C Programming What is the maximum number of dimensions an array in C may have? 8 50 Theoratically no limit. The only practical limits are memory size and compilers. 2 20 8 50 Theoratically no limit. The only practical limits are memory size and compilers. 2 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 6 1 0 10 None of these 6 1 0 10 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} Error -2 2 1 Error -2 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 2 4 4 2 4 5 5 5 5 2 5 5 2 4 4 2 4 5 5 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 000 433 Garbage Value 333 444 000 433 Garbage Value 333 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? None of these arr{7} arr[6] arr{6} arr[7] None of these arr{7} arr[6] arr{6} arr[7] ANSWER DOWNLOAD EXAMIANS APP