Tagged Questions

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
58 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
4answers
394 views

Proper Way to Initialize C++ Structs

Our code involves a POD struct (at least I think it's POD; it's a basic struct that has other structs and POD variables in it) that needs to get initialized in the beginning. Based one what I've read, ...
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, ...