Why enum is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
Define recursion in c.
What is assert and when would I use it?
code for copying two strings with out strcpy() function.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
I came across some code that puts a (void) cast before each call to printf. Why?
Explain bitwise shift operators?
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
What is identifier in c?
When is a “switch” statement preferable over an “if” statement?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
what is the use of ‘auto’ keyword?
What does return 1 means in c?