Search:

Type: Posts; User: ni00

Search: Search took 0.00 seconds.

  1. Thread: array declaration

    by ni00
    Replies
    6
    Views
    1,556

    Hi, thank you for the advise. I studied a basic...

    Hi, thank you for the advise. I studied a basic idea of dynamic memory allocation in K&R. Some fields of my database in fact contain strings whose length vary each row, so I should've used the...
  2. Thread: array declaration

    by ni00
    Replies
    6
    Views
    1,556

    Thanks a lot again. Now I come to understand that...

    Thanks a lot again. Now I come to understand that there is usually no need of auto variable more than 1Mb, as in my case. static specifier works perfectly, I will go with it.
  3. Thread: array declaration

    by ni00
    Replies
    6
    Views
    1,556

    Thank you so much, that's explain everything. (I...

    Thank you so much, that's explain everything. (I did not even know that there's upper limit for local variable size.)
  4. Thread: array declaration

    by ni00
    Replies
    6
    Views
    1,556

    array declaration

    Please allow me to make a beginner's question. I'd like to declare an array of structures for holding data of a worksheet:

    struct row {
    int name;
    int age;
    int dob;
    ...(many entries)...};
    ...
Results 1 to 4 of 4