C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} x=1 x=5 x=0 x=4 Error x=1 x=5 x=0 x=4 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} None of these void fun(int *p[3][4]){} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} None of these void fun(int *p[3][4]){} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 1 2 Program do no return a value. -1 1 2 Program do no return a value. -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command comes before the first executable statement has # as the first character need not start on the first column need not start on a new line comes before the first executable statement has # as the first character need not start on the first column need not start on a new line ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. The number of successful read input values. 1 0 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 1 0 ASCII value of the input read. 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. None of these 2, 4 1, 4 2, 3 1 None of these 2, 4 1, 4 2, 3 1 ANSWER DOWNLOAD EXAMIANS APP