C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} 300 %d\n None of These Error 300 %d\n None of These Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 10 10 20 20 Run time error 10 20 10 10 20 20 Run time error 10 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Can't Say None of These Compiler Error will print Hello World Can't Say None of These Compiler Error will print Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of macros All of these Acts before compilation Takes care of conditional compilation Takes care of include files Takes care of macros All of these Acts before compilation Takes care of conditional compilation Takes care of include files ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? case default register main auto case default register main auto ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Linked list Register Queue Array Stack Linked list Register Queue Array ANSWER DOWNLOAD EXAMIANS APP