C Programming Determine Output:main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 8 5 5 2 4 4 2 4 5 2 5 5 8 5 5 2 4 4 2 4 5 2 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 54554 55445 45545 54544 54554 55445 45545 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 None of these Infinite loop 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 None of these Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 13 12 14 11 Compilation error 13 12 14 11 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[6] None of these arr{7} arr[7] arr{6} arr[6] None of these arr{7} arr[7] arr{6} ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? int real char float double int real char float double ANSWER DOWNLOAD EXAMIANS APP