Some C Questions
Output:
A E
----------------------------------
OUTPUT:
ffff , -1
ffff , -1
---------------------------------------
OUTPUT:
on
Catch: Note the assignment statement returns the assigned value
----------------------------------
printf("%d\n",printf("%d%d",2,2) & printf("%d%d", 2, 2));
OUTPUT :22222
int *p[10];
printf("%d %d\n",sizeof(*p),sizeof(p));
OUTPUT 4 40
-------------------------------------------------------------
OUTPUT:
val 6
val after pre 6
val 6
val after post 7