Answer Posted / kiruthiga
c is a general purpose proramming language
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
How can I avoid the abort, retry, fail messages?
What is uint8 in c?
to find the closest pair
Is c weakly typed?
What is the purpose of main( ) in c language?
Can you assign a different address to an array tag?
What is the total generic pointer type?
What is difference between %d and %i in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is a double c?
Which is better oop or procedural?
What does return 1 means in c?
Explain the bubble sort algorithm.
Which node is more powerful and can handle local information processing or graphics processing?
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); } }