What are the 4 data types?
How can I get random integers in a certain range?
How can I swap two values without using a temporary?
In C language, a variable name cannot contain?
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 are qualifiers and modifiers c?
Explain why c is faster than c++?
When was c language developed?
all c language question
What is the use of pragma in embedded c?
What is calloc() function?
If null and 0 are equivalent as null pointer constants, which should I use?
What is scope and lifetime of a variable in c?
What is methods in c?
What is the use of getch ()?