C Programming Which of the following operator takes only integer operands? None of these % * + / None of these % * + / ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 50, 13, 11, 13 50, 13, 24, 13 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 50, 13, 11, 13 50, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ float long int short char float long int short char ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking During Preprocessing During Editing During Execution None of these During linking During Preprocessing During Editing During Execution 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? None of these resume break skip continue None of these resume break skip continue ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? main() getch() start() printf() system() main() getch() start() printf() system() ANSWER DOWNLOAD EXAMIANS APP