C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 12 11 13 None of These 12 11 13 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? break skip resume continue None of these break skip resume continue None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program?#include#define int char void main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} None of These Compiler Error sizeof(i)=1 sizeof(i)=2 None of These Compiler Error sizeof(i)=1 sizeof(i)=2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 50 2 Theoratically no limit. The only practical limits are memory size and compilers. 20 8 50 2 Theoratically no limit. The only practical limits are memory size and compilers. 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }} None of These Error zero three None of These Error zero three ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 16 19 17 20 -1 16 19 17 20 -1 ANSWER DOWNLOAD EXAMIANS APP