Tagged Questions

7
votes
3answers
450 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 …
1
vote
3answers
234 views

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

Hi again! 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; …
1
vote
3answers
935 views

struct c dynamically allocate memory

Hello, 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 …
0
votes
6answers
511 views

structure calloc c

Hello, 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 …