C Programming Which of following is not a valid name for a C variable? Examians Exam_veda None of these Both A and B Exam veda Examians Exam_veda None of these Both A and B Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 45545 45445 54544 54554 45545 45445 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff2 fff1 fff0 fff4 fff3 fff2 fff1 fff0 fff4 fff3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} None of These Compiler Error GOOD GOOD BAD None of These Compiler Error GOOD GOOD BAD ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} Compiler Error 50 None of These 10 Compiler Error 50 None of These 10 ANSWER DOWNLOAD EXAMIANS APP
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++);} 12 7 6 6 6 7 5 6 11 6 12 7 6 6 6 7 5 6 11 6 ANSWER DOWNLOAD EXAMIANS APP