Tagged Questions

1
vote
3answers
979 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 ...
0
votes
2answers
591 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() { ...