Predict the output for this program int main ( ) { printf (" %d ", printf (" %d %d ",5,5)& printf ( "%d %d ",7,7)); return 0; } 1 7 7 5 5 7 ... Read More
What is the output of the following program? int main ( ) { printf (" %d %d ", printf (" %d %d ",7,7), printf (" %d %d ",5,5)); return 0; } 7 7 5 5 3 3 ... Read More
73 Predict the Output: int main() { if (1|| printf ( "Logical Programs" )) printf ( "C Interview Questions" ); return 0; ... Read More
60 Predict the output: int main () { int i=2,b=24; printf ( "%d" ); return 0; } Output: 24 Logic: %d will returns the Current G... Read More
47 #define function(a) printf("Answer: %d",a) int main() { extern int a; printf("%d",printf("%d",function(scanf(... Read More
33 int main() { int a; scanf("%d",&a)+1; a=printf("%d",a++)+a; printf("%d",a); } if you give input as '1 ... Read More
30 #include int main() { int a; printf("enter no."); scanf("%d",&a)+1; a=printf("%d",a++)+a; printf("%d... Read More
27 #include int main() { int a=2; printf(&a["shark srini"]); return 0; } Output: ark srini Logic: To understand the logic of t... Read More