C Programming Which of the following operator takes only integer operands? None of these / + % * None of these / + % * ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on the first column need not start on a new line comes before the first executable statement has # as the first character need not start on the first column need not start on a new line comes before the first executable statement has # as the first character ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a); Garbage Value 13 12 15 14 Garbage Value 13 12 15 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} None of these 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 None of these 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Some address will be printed. None of these. Error Will make an infinite loop. Some address will be printed. None of these. Error Will make an infinite loop. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 1 33 -1 Compilation Error 0 1 33 -1 Compilation Error 0 ANSWER DOWNLOAD EXAMIANS APP