Answer Posted / p.saravanana
Data structure is a (computer science) the organization of
data (and its storage allocations in a computer)
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is operator precedence?
Explain what is a static function?
What is substring in c?
How to get string length of given string in c?
What is the size of array float a(10)?
What is the difference between union and anonymous union?
Is c high or low level?
Explain why c is faster than c++?
What is extern variable in c with example?
please send me the code for multiplying sparse matrix using c
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Is it better to use malloc() or calloc()?
How do I get a null pointer in my programs?
What happens if a header file is included twice?