C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 6 5 6 11 6 12 7 6 7 6 6 5 6 11 6 12 7 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet A number A special symbol other than underscore Both of the above An alphabet A number A special symbol other than underscore Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? || ++ + && % || ++ + && % ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 15 11 10 None of these 12 15 11 10 None of these 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? main() system() start() getch() printf() main() system() start() getch() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int i=10; printf("i=%d", i); { int i=20; printf("i=%d", i); i++; printf("i=%d", i); } printf("i=%d", i);} 10 20 21 21 10 10 11 11 10 20 21 10 10 20 21 20 10 20 21 21 10 10 11 11 10 20 21 10 10 20 21 20 ANSWER DOWNLOAD EXAMIANS APP