Tagged Questions

17
votes
5answers
10k views

c difference between malloc and calloc

What is the difference between doing: ptr = (char **) malloc (MAXELEMS * sizeof(char *)); // OR ptr = (char **) calloc (MAXELEMS, sizeof(char*)); ??? EDT: When is it a good idea to use calloc over ...
7
votes
5answers
536 views

Two arguments to calloc

Why does calloc take two arguments instead of one like malloc? Specifically, since there is no difference between (or is there?) between the following expressions: calloc (a, b); calloc (b, a); ...
7
votes
5answers
276 views

Does any operating system implement buffering for malloc()?

A lot of c/malloc()'s in a for/while/do can consume a lot of time so I am curious if any operating system buffers memory for fast mallocs. I have been pondering if I could speed up malloc's by ...
7
votes
7answers
1k views

calloc — Usefulness of zeroing out memory

What is the advantage of zeroing out memory (i.e. calloc over malloc)? Won't you change the value to something else anyways? -Chris
6
votes
3answers
1k views

Valgrind says “stack allocation,” I say “heap allocation”

I am trying to trace a segfault with valgrind. I get the following message from valgrind: ==3683== Conditional jump or move depends on uninitialised value(s) ==3683== at 0x4C277C5: ...
5
votes
4answers
2k views

calloc v/s malloc and time efficiency

I've read with interest the post C difference between malloc and calloc. I'm using malloc in my code and would like to know what difference I'll have using calloc instead. My present (pseudo)code ...
4
votes
2answers
228 views

Why calloc takes two arguments while malloc only one?

IMO one is enough ,why calloc requires to split it into two arguments?
4
votes
5answers
890 views

I'm very confused about malloc() and calloc() on C

I've always programmed in Java, which is probably why I'm so confused about this: In Java I declare a pointer: int[] array and initialize it or assign it some memory: int[] array = {0,1,0} int[] ...
4
votes
4answers
1k views

C - calloc() v. malloc() [closed]

Possible Duplicate: c difference between malloc and calloc Please explain the significance of this statement, Another difference between the malloc() and calloc() functions is that ...
4
votes
4answers
546 views

calling calloc - memory leak valgrind

The following code is an example from the NCURSES menu library. I'm not sure what could be wrong with the code, but valgrind reports some problems. Any ideas... ==4803== 1,049 (72 direct, 977 ...
3
votes
4answers
469 views

Calloc with structure with pointers in C

I know that calloc request memory to be used, writes 0 on all the bits and then returns a pointer to it. My question is: if I use calloc with a structure that contains pointers, will those pointers ...
3
votes
2answers
175 views

If I say calloc(1000, 23), does the 23 “round up” to 24? Or to 32?

I was wondering, do most implementations of calloc treat the size as an alignment too, and round it up to the next supported granularity? If so, then do they round up to the next power of 2, or do ...
3
votes
4answers
283 views

Does the pointer passed to free() have to point to beginning of the memory block, or can it point to the interior?

The question is in the title... I searched but couldn't find anything. Edit: I don't really see any need to explain this, but because people think that what I'm saying makes no sense (and that I'm ...
3
votes
4answers
461 views

preferring malloc over calloc [closed]

Possible Duplicate: c difference between malloc and calloc Is there any situation where you would prefer malloc over calloc. i know both malloc and calloc allocate memory dynamically and ...
2
votes
7answers
96 views

When should you free memory dynamically allocated?

Essentially, I have created a piece of Code which consists of a tree, whereby each tree node has its own linked list containing data, (each treeNode containing data as well). So that each treeNode ...
2
votes
3answers
68 views

Repeated calloc over the same pointer

What happens when I use different succesive calloc functions over the same pointer? int *ptr; ptr = (int *) calloc(X, sizeof(int)); ptr = (int *) calloc(Y, sizeof(int)); ptr = (int *) calloc(Z, ...
2
votes
3answers
85 views

How to malloc “MyDef ** t” to a specific length, instead of “MyDef * t[5]” in C

A struct like the following works fine, I can use t after calling malloc(sizeof(mystruct)): struct mystruct { MyDef *t[5]; }; I want to be able to dynamically set the length of the array of MyDef, ...
2
votes
2answers
391 views

How to initialise a pointer to pointer struct in C?

I have a struct which is a node, and another which is a list of these nodes. In the list struct, its an array of nodes, but instead of an array, it's a pointer to pointer with a size integer: typedef ...
2
votes
4answers
340 views

calloc and copying data into memory area using c

I'm trying to allocate a block of memory and then copy data into that space. I made this simple program and it doesn't do what I expect it to do. Could someone please point out my faulty reasoning. ...
2
votes
6answers
225 views

Freeing memory after use

I have a command line C program for which I use the calloc() function to assign some memory for a struct which also has a struct in it with some memory assigned. If I use the free() function to ...
1
vote
1answer
79 views

Calloc providing a pointer that begins inside already allocated memory?

I'm getting some kind of pointer collision, Basically, in one function I do, a = calloc(1,28); // gives me 0x100100d10 Then pretty soon in a subfunction I do, b = calloc(1,16); // gives me ...
1
vote
3answers
144 views

Dynamic Memory storage issue after realloc - C

For an assignment at school, we have to use structs to make matrices that can store a infinite amount of points for an infinite amount of matrices. (theoretical infinite) For the assignment I decided ...
1
vote
2answers
188 views

C access violation after using calloc

Note: C is Microsoft C Compiler. I'm having trouble with the following code. *Roomsize = (int*)calloc(sizeof(int),sched->numberOfRooms); roomIndex = 0; for(roomIndex=0; roomIndex< ...
1
vote
5answers
331 views

Calloc inside function

Looking at this question that has just been asked: http://stackoverflow.com/questions/2231317/inconveniences-of-pointers-to-static-variables would doing something like this be considered bad practice, ...
1
vote
6answers
388 views

When to free memory inside a C code?

When I alloc memory outside a while loop for example, is it okay to free it inside it ? Are these two codes equivalent ? int* memory = NULL; memory = malloc(sizeof(int)); if (memory != NULL) { ...
1
vote
3answers
971 views

Divide a string into smaller parts & organize a structure (C-programming)

I am still learning C and I'm having some trouble figuring out how to handle this. Well, I have two structs: struct myStruct { ... struct myString *text[5]; ... } allStructs; struct ...
1
vote
3answers
4k views

struct c dynamically allocate memory

I am using a struct and I want to initialize a maximum of 10 ports. However, when the program is running it could be a lot less, we don't know until run-time. However, this will be the max. I have ...
0
votes
2answers
74 views

Dynamic array in struct calloc or pointers failing, C

I'm attempting to complete an assignment on sparse matrices in C. I have a sparse matrix held as a list of values and coordinates and am converting it to Yale format. I have run into a strange memory ...
0
votes
2answers
63 views

How do I calculate beforehand how much memory calloc would allocate?

I basically have this piece of code. char (* text)[1][80]; text = calloc(2821522,80); The way I calculated it, that calloc should have allocated 215.265045 megabytes of RAM, however, the program in ...
0
votes
2answers
62 views

Invalid application of sizeof to incomplete type with a struct

So I'm trying to make a game, and I have a struct where I put all the information about the players. That's my struct: struct player{ int startingCapital; int currentCapital; int ...
0
votes
0answers
49 views

Is it possible to have a single C (shared) library with multiple memory mgmt functions?

The title may not be very clear so its perhaps best to explain what I'm trying to do. I have a (C) shared library which is used by several of my applications. I now want to use the functions in my ...
0
votes
3answers
72 views

Understanding the purpose of malloc and calloc

I'm trying to get my head around C. Reading through K&R, I am flicking back and forth trying to find where it states the situations I should obtain blocks of memory dynamically. For example, I ...
0
votes
2answers
62 views

Correct memory allocation for a struct

Having a struct defined in a such way, I need to allocate memory typedef struct string_collection { char **c; size_t current, allocated; } TSC, *ASC; So I came with this code, is it right ...
0
votes
4answers
83 views

Manual allocation in a stringbuffer object

For a small to-be-embedded application, I wrote a few functions + struct that work as String Buffer (similar to std::stringstream in C++). While the code as such works fine, There are a few ...
0
votes
4answers
168 views

Calloc causing segmentation fault

Here is my code: #include <stdio.h> #include <stdlib.h> int main(){ int n=10; char *s= calloc(2,sizeof(char)); sprintf(s,"%d",n); printf(s); return 0; } The intent is to assing 2 digit ...
0
votes
3answers
121 views

determine length of calloc array of TCHARs (not string length)

I have this code: TCHAR *sRes; sRes = (TCHAR *) calloc(16384, sizeof(TCHAR)); DWORD dwRes = sizeof(sRes); dwRes is always 8, and of course _tcslen(sRes) is always 0. I am looking for 16384.
0
votes
9answers
194 views

C best way to clear an array of doubles

In C, How can I reset a given pointer to have all values in an array be a specified value? Is it best using a for loop, or is there a function that I can use to set all values in an array to 0. My ...
0
votes
2answers
524 views

initializing a data structure in C to manage a pool of memory

i am writing a simple function for a library, that will take in as a parameter the size of memory to be managed by my other functions. i have a data structure that holds the information of this ...
0
votes
2answers
505 views

How to use calloc() in C?

Shouldn't I get an error if my string goes over 9 characters long in this program? // CString.c // 2.22.11 #include <stdio.h> #include <stdlib.h> #include <string.h> main() { ...
0
votes
7answers
344 views

Difference in uses between malloc and calloc

gcc 4.5.1 c89 I have written this source code for my better understanding of malloc and calloc. I understand, but just have a few questions. dev = malloc(number * sizeof *devices); is equal to ...
0
votes
5answers
410 views

free() function without malloc or calloc

quick question Can you use the free() function without having to prior call a malloc ?? ei. void someFunc( void ) { char str[6] = {"Hello"}; //some processing here .... free(str); } I ...
0
votes
2answers
499 views

Initializing array inside struct - C?

Seem to have a memory allocation problem and think it's because in my struct, there is a pointer to an array of another struct. However, I'm not initializing this array and not sure how: typedef ...
0
votes
3answers
1k views

2d array, using calloc in C

I'm trying to create a 2D array of chars to storage lines of chars. For Example: lines[0]="Hello"; lines[1]="Your Back"; lines[2]="Bye"; Since lines has to be dynamically cause i don't know how ...
0
votes
6answers
2k views

structure calloc c

C99 gcc I keep getting this error. I have a struct outside main. And inside main I am trying to allocate on the stack using calloc. I can't seem to find out what is wrong. Thanks for any advice, ...
-1
votes
2answers
65 views

calloc, malloc and dynamic struct allocation

I am trying to dynamically allocate an array of structures in c so that I can refer to them the same as if I had done a static declaration. I understand that calloc() does the additional step of ...
-2
votes
3answers
134 views

What's the best method to free memory?

I'm working on ANSI C. I have a string object which created with array of char.. I think the object make a memory leak.. when I run my program about five minutes (maybe almost 10000 iteration) my ...