C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 64 None of These 4 16 64 None of These 4 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 20 20 Run time error 10 10 10 20 20 20 Run time error 10 10 10 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions All of these Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Makes the debugging task easier. All of these Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Makes the debugging task easier. ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 9 10 11 12 13 None of these 10 11 12 13 14 10 11 12 13 14 15 Infinite loop 9 10 11 12 13 None of these 10 11 12 13 14 10 11 12 13 14 15 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 50 None of these 30 15 10 50 None of these 30 15 10 ANSWER DOWNLOAD EXAMIANS APP