C Programming Which of following is not a valid name for a C variable? Both A and B Exam_veda Examians None of these Exam veda Both A and B Exam_veda Examians None of these Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed? y=EDA y=AMVEDA y=VEDA y=EXAMIANS y=MVEDA y=EDA y=AMVEDA y=VEDA y=EXAMIANS y=MVEDA ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. 1 The number of successful read input values. 0 ASCII value of the input read. The actual values read for each argument. 1 The number of successful read input values. 0 ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} 1 12 Error 11 1 12 Error 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 -1 1 1 -1 -1 1 -1 complier error 1 -1 1 1 -1 -1 1 -1 complier error 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++);} 11 6 5 6 12 7 6 7 6 6 11 6 5 6 12 7 6 7 6 6 ANSWER DOWNLOAD EXAMIANS APP