C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 4 3 10 5 5 5 10 5 4 4 10 5 3 3 10 5 3 4 10 5 4 3 10 5 5 5 10 5 4 4 10 5 3 3 10 5 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Dennis Ritchie Gosling Dr. Bjarne Stroustrup James F. Codd Dennis Ritchie Gosling Dr. Bjarne Stroustrup James ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} Runtime error Syntax error 100 g##g2 10012 Runtime error Syntax error 100 g##g2 10012 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output 0 1 complier error no error no output 0 1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? register case main auto default register case main auto default ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} P None of These N M P None of These N M ANSWER DOWNLOAD EXAMIANS APP