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 of the following is not a correct variable type? float real int double char float real int double char ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr string Data file stdin no such function in 'C'. stderr string Data file stdin no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? getch() main() printf() start() system() getch() main() printf() start() system() ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 24 40 30 36 32 24 40 30 36 32 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[7] arr{6} arr{7} arr[6] None of these arr[7] arr{6} arr{7} ANSWER DOWNLOAD EXAMIANS APP