What is the size of enum in bytes?
No Answer is Posted For this Question
Be the First to Post Answer
how to impliment 2 or more stacks in a single dimensional array ?
Why does notstrcat(string, "!");Work?
wap to print "hello world" without using the main function.
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....?????
Why isn't any of this standardized in c? Any real program has to do some of these things.
main() { clrscr(); } clrscr();
In C programming, what command or code can be used to determine if a number of odd or even?
Explain zero based addressing.
what is the stackpointer
Why shouldn’t I start variable names with underscores?
#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); }
What is use of integral promotions in c?