Note: This tutorial uses pointers pretty heavily. If don't understand pointers, please read this tutorial before you go on.
This has been bugging me for a little while, but I figured it out. I will share my knowledge to the rest of the world! If you need to take data from the user that could be any length, you could define a really big array like so:
There are several problems with this. No matter how big the array is, the user could still have more input. If the user doesn't have that much input, you have wasted memory.Code:int array[100000];
When you are using malloc(), realloc() and free() you need the following header file:
First, I will show you how to allocate memory for a pointer. You can declare a pointer like so:Code:#include <stdlib.h>
The pointer can point to any location at first. You should always make it point to something or you can allocate some memory that your pointer will point to. To do this, you need to use the malloc() function. Use it like so:Code:int *pointer;
malloc() returns a void pointer and takes an argument of how many bytes to allocate. Because pointer points to an integer, we use the 2*sizeof(int). Using malloc like the above is similar to doing this:Code:pointer=malloc(2*sizeof(int));
Error checking:Code:int array[2];
If the operating system can't allocate more memory for your program, malloc will fail and return a NULL value. It's always a good idea to make sure malloc is successful:
Now I will show you how to use realloc(). You use realloc after you have used malloc to give a pointer more or less memory. Let's say you want to give a pointer 5 integers of memory. The code should look like this:Code:pointer=malloc(1*sizeof(*pointer)); if (pointer==NULL) { printf("Error allocating memory!\n"); //print an error message return 1; //return with failure }
This is just like malloc, except realloc takes two arguments. The first argument is the pointer you want to copy the data from. The above code copies pointer to temp, then copies temp back to pointer if everything goes correctly. You may have noticed a new function though, and that is free().Code:int *temp = realloc(pointer, 5*sizeof(int)); if ( temp != NULL ) //realloc was successful { pointer = temp; } else //there was an error { free(pointer); printf("Error allocating memory!\n"); return 1; }
Free is used to free the memory you have allocated with malloc or realloc. All memory that you allocate should be freed when you are done using it. Free takes a pointer as an argument like so:
Here is an example program that makes use of a dynamic array. Everything you need to know is in the comments.Code:free(pointer);
So that's it. Any suggestions for improvement are welcome. +Reputation is very much appreciated.Code:#include <stdio.h> #include <stdlib.h> /* This program takes input and outputs everything backwards */ int main() { int *data,*temp; data=malloc(sizeof(int)); int c; /* c is the current character */ int i; /* i is the counter */ for (i=0;;i++) { c=getchar(); /* put input character into c */ if (c==EOF) /* break from the loop on end of file */ break; data[i]=c; /* put the character into the data array */ temp=realloc(data,(i+2)*sizeof(int)); /* give the pointer some memory */ if ( temp != NULL ) { data=temp; } else { free(data); printf("Error allocating memory!\n"); return 1; } } /* Output data backwards one character at a time */ for (i--;i>=0;i--) putchar(data[i]); /* Free the pointer */ free(data); /* Return success */ return 0; }
Last edited by Guest; 03-15-2010 at 09:39 PM. Reason: Improved wording
Root Beer == System Administrator's Beer
Download the new operating system programming kit! (some assembly required)
Nicely done. +rep
Good work, +rep, but I would just like to point out one thing:
You say that
When you allocate memory, you make the pointer point to the start of the newly allocated memory block. A pointer does always points to something (or has the value NULL). You do not "give the pointer memory", you allocate memory for the program and use the pointer to know where that memory is.This pointer currently doesn't point to anything, it is empty. You can make it point to something or you can give the pointer some memory.
Except from that, good tutorial, and it deserves +rep![]()
Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Thanks everyone! I appreciate the feedback.
@marwex89: I probably should have paid more attention to wording. It's changed now.
Edit: I just realized this is my 100th post!
Root Beer == System Administrator's Beer
Download the new operating system programming kit! (some assembly required)
I know I'm picking on you now, but I'd further edit that sentence(s)
1. The contents of a pointer is not guaranteed to be NULL at declarations. It is probably pointing to some random location. You are usually advised to specifically initialize it to NULL like this:The pointer has the NULL value at first. You can make it point to something or you can allocate some memory for it. To do this, you need to use the malloc() function.
2. You're still not allocating memory for the pointer, you are allocating memory for your program, to hold data. The pointer just points to it.Code:int* pointer = NULL;
I'm sorry that I'm picking on you like this, but I guess it's kinda important to get this right. And you asked for it:
Any suggestions for improvement are welcome.
Congrats on 100!
Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
I think i got it now. My C book that I bought was kind of an intro to C. It didn't explain things in such great detail. I don't understand all the technical little things yet.
Root Beer == System Administrator's Beer
Download the new operating system programming kit! (some assembly required)
It's OK, I'm just picky![]()
Hey! Check out my new Toyota keyboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Well written and well done. +rep
I finally had time to read through and think about this. Very nice.
From what I understand, you reallocate memory for every input character? It might be more efficient to initially allocate an array of a certain size, then once the array becomes most of the way filled, reallocate memory (and double the size of the array). Granted some memory could be waisted, but if I can recall from my data structures class - this is how C++/Java vectors work, and tends to be most efficient. Maybe someone can verify this.
There are currently 5 users browsing this thread. (0 members and 5 guests)
Bookmarks