C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} c 65 Error A c 65 Error A ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all File scope Local scope Block scope Function scope No scope at all File scope Local scope Block scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above Local variables R-values Arithmetic expressions Members of a structure Both of the above Local variables R-values Arithmetic expressions Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} 0 0 0 0 Infinite Loop 5 4 3 2 1 None of These 0 0 0 0 Infinite Loop 5 4 3 2 1 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Compiler Error Can't Say None of These will print Hello World Compiler Error Can't Say None of These will print Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 32 40 30 24 36 32 40 30 24 36 ANSWER DOWNLOAD EXAMIANS APP