What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
What are types of functions?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Explain what happens if you free a pointer twice?
What is file in c language?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
Why void is used in c?
What is a nested formula?
how to display 2-D array elements in spiral
main difference between c and c++ language
Can you write the function prototype, definition and mention the other requirements.
How do I get a null pointer in my programs?