What is the use of structure padding in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of the sizeof operator?
Explain what is the purpose of "extern" keyword in a function declaration?
How is pointer initialized in c?
LOGIC OF Bodmas?
write a c program for swapping two strings using pointer
What is sorting in c plus plus?
Will Macros support multiple arguments ?
How do I create a directory? How do I remove a directory (and its contents)?
What's wrong with "char *p = malloc(10);" ?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }