C Programming Which one of the following is not a reserved keyword for C? auto register main case default auto register main case default ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 1 1 2 3 1 1 2 2 None of these 0 1 2 3 0 1 2 2 1 1 2 3 1 1 2 2 None of these 0 1 2 3 0 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Random order Iterative order First In First Out order Parallel order Last In First Out order Random order Iterative order First In First Out order Parallel order 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));} 10012 100 Runtime error g##g2 Syntax error 10012 100 Runtime error g##g2 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } Nothing is printed XAM is printed exam is printed Compiler Error Nothing is printed XAM is printed exam is printed Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? Garbage Value 3 0 2 1 Garbage Value 3 0 2 1 ANSWER DOWNLOAD EXAMIANS APP