C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} A 65 c Error A 65 c Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} will print Hello World None of These Compiler Error Can't Say will print Hello World None of These Compiler Error Can't Say ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 None of These 12 11 13 None of These 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Merging two strings. Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Extracting a substring out of a string. Merging two strings. Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Extracting a substring out of a string. ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions R-values Members of a structure Local variables Both of the above Arithmetic expressions R-values Members of a structure Local variables Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of conditional compilation Takes care of include files All of these Acts before compilation Takes care of macros Takes care of conditional compilation Takes care of include files All of these Acts before compilation Takes care of macros ANSWER DOWNLOAD EXAMIANS APP