C Programming What is the maximum number of dimensions an array in C may have? 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 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? start() printf() main() getch() system() start() printf() main() getch() system() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 2 1 1 2 2 2 1 1 2 1 1 2 2 2 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} GOOD GOOD BAD Compiler Error None of These GOOD GOOD BAD Compiler Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 0 Garbage Value 2 None of These 0 Garbage Value 2 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The number of successful read input values. ASCII value of the input read. 1 The actual values read for each argument. 0 The number of successful read input values. ASCII value of the input read. 1 The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP