Awadhesh Prajapati
What will be the output of the following C code? #include <stdio.h> void main() { int k = 5; int *p = &k; int **m = &p; printf("%d%d%d\n", k, *p, **m); }
what will be the output of the following statement? int a=5,b=6,c=9,d; d=((ac?1:2):(c>b?6:8)); printf("%d",d);
What will be the output of the following statements? int a=1,b; b=a--- -2; printf("%d",b);