C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 0 0 1 0 None of these 1 1 0 1 0 0 1 0 None of these 1 1 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[6] arr{7} arr[7] arr{6} None of these arr[6] arr{7} arr[7] ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 4 5 6 7 1 2 3 4 4 Syntax error Runtime error 4 5 6 7 1 2 3 4 4 Syntax error Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 36 32 24 30 40 36 32 24 30 40 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? None of these puts() scanf() gets() printf() None of these puts() scanf() gets() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are correct about an array?1. The array int num[26]; can store 26 elements.2. The expression num[1] designates the very first element in the array.3. It is necessary to initialize the array at the time of declaration.4. The declaration num[SIZE] is allowed if SIZE is a macro. 1, 4 None of these 2, 3 1 2, 4 1, 4 None of these 2, 3 1 2, 4 ANSWER DOWNLOAD EXAMIANS APP