Hallo the following code read the stdin and put it into stdout, but in reverse. I used for this a static array, because I know how much characters are in the input.txt. My question is how can I change my array in a dynamic array(pointer) with using malloc and realloc? All my tries failed.
#include <stdio.h>
#include <stdlib.h>
int main()
{
char ch;
int i,counter;
char array[50];
counter = 0;
i = 0;
while((ch=getchar()) != EOF)
{
array[i] = ch;
i++;
counter++;
}
for(i = (counter + 1); i >= 0; i--)
{
printf("%c",array[i]);
}
printf("\n");
return 0;
}
Even if you know that the input you use never has more than 50 characters, you should enforce that limit. When the program is run with arbitrary input, you will eventually access data beyond the array's end.
Anyway, here's your program core, extracted into a function:
If you just want to use the same fixed-length buffer on the heap, the code is very similar. You should define a pointer to
char
instead of the array and then callmalloc
in order to obtain the required memory. After you are done using that memory, you must release it withfree
.Here's a second version that uses memory on the heap:
Things to note:
sizeof(*array)
issizeof(char)
in this case, which is always 1 and therefore often is omitted. Butp = malloc(count * sizeof(*p))
is a very useful allocation pattern for allocating an array ofcount
elements that will still work if you change the type of the things pointed to.Memory allocation on the heap may fail;
malloc
will then returnNULL
. You must cater for such cases. The simple strategy is to just print an error message and abort the program. Depending on what you need the memory for, you might chose other failure strategies.Note how the core of the function, the loop is exactly the same as in the first version.
You also must enforce the limit of 50 chars. The array is on the heap, but it doesn't grow.
Free the memory after use. If you don't you "leak memory", i.e. you keep chunks of memory blocked. Here,
array
- the pointer variable that holds the array, not the array itself - is a local variable that goes out of scope. Forgetting tofree
the memory here will mean that you lose its address and can't access it again.The variable
array
points to the start of the memory. This variable must be passed tofree
. Don't change this variable, e.g. by incrementing it, otherwise you will lose your "key" to the memory.A slightly more involved version re-allocates memory as needed. You can use
realloc
instead ofmalloc
if your array grows. The already allocated data stays in place, even if the memory is not the same:Notes:
realloc(NULL, size)
behaves likemalloc(size)
. Therefore you can implement a reallocation scheme easily by starting with aNULL
pointer.Although the kernel keeps track of the allocated size internally, you have no means to know it, so you must keep track of this information yourself, in this case with
size
.Again, you must ensure the the allocation was successful. I've used quick-and-dirty (and silent) program termination above, but you can chose other strategies.
In this case, the core loop is somewhat more involved. Before appending to the memory, you must check whether you should increase it. After you have populated your memory, access (within the allocated bounds) is as usual.