What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} 4 7 5 None of these 6 TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} 12PP345 12PP Compiler Error None of These TRUE ANSWER : ? YOUR ANSWER : ?
Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 065 65 53 65 Syntax error 053 65 65 65 TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 0..1 1..1 0..0 1..0 TRUE ANSWER : ? YOUR ANSWER : ?
Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -110 450 -10 10 110 TRUE ANSWER : ? YOUR ANSWER : ?
What is the correct value to return to the operating system upon the successful completion of a program? Program do no return a value. -1 1 2 TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} 11 Error 1 12 TRUE ANSWER : ? YOUR ANSWER : ?
What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 5 9 6 7 8 TRUE ANSWER : ? YOUR ANSWER : ?
What is the maximum number of dimensions an array in C may have? 50 8 2 Theoratically no limit. The only practical limits are memory size and compilers. 20 TRUE ANSWER : ? YOUR ANSWER : ?