What are Storage Classes in C ?
Answer Posted / mustaffa hasan
what are file reading and coping
| Is This Answer Correct ? | 1 Yes | 11 No |
Post New Answer View All Answers
Write a program to print numbers from 1 to 100 without using loop in c?
What is a buffer in c?
What is 1f in c?
What is the meaning of ?
How can I manipulate individual bits?
Explain what are compound statements?
What is array of structure in c programming?
How can I read/write structures from/to data files?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is malloc calloc and realloc in c?
What is context in c?
Can you tell me how to check whether a linked list is circular?
Can you subtract pointers from each other? Why would you?
Why is void main used?
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); } }