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 What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 2 2 2 4 3 4 3 3 2 3 2 2 2 4 3 4 3 3 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=-1, j=-1, k=0, l=2, m; m = i++ && j++ && k++ || l++; printf("%d %d %d %d %d", i, j, k, l, m);} 0 0 1 2 0 0 0 1 3 1 0 0 1 3 0 0 0 0 2 1 0 0 1 2 0 0 0 1 3 1 0 0 1 3 0 0 0 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Random Sequential Sequential and Random None of these Random Sequential Sequential and Random None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 0 Garbage Value 2 1 3 0 Garbage Value 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 0 14 None of these 1 10 0 14 None of these 1 ANSWER DOWNLOAD EXAMIANS APP