What is union in c?
Are the variables argc and argv are local to main?
How can you convert integers to binary or hexadecimal?
How do I send escape sequences to control a terminal or other device?
Explain how can you avoid including a header more than once?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Explain void pointer?
Write a c program to demonstrate character and string constants?
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); } }
What is a structure and why it is used?
When should the const modifier be used?
What is the most efficient way to store flag values?
write a progrmm in c language take user interface generate table using for loop?
How can I sort a linked list?
Are the outer parentheses in return statements really optional?