C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 Syntax error 53 65 065 65 053 65 65 65 Syntax error 53 65 065 65 053 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } te ow et ck te ow et ck ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Error Some address will be printed None of These make an infinite loop Error Some address will be printed None of These make an infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 2 8 Theoratically no limit. The only practical limits are memory size and compilers. 50 20 2 8 Theoratically no limit. The only practical limits are memory size and compilers. 50 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 Linker Error Compiler Error 2 20 Linker Error Compiler Error 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 1 0 3 2 1 0 3 2 ANSWER DOWNLOAD EXAMIANS APP