C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 0289 Syntax error 1289 713 0713 0289 Syntax error 1289 713 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 55445 54544 45545 54554 55445 54544 45545 54554 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=MVEDA y=EXAMIANS y=VEDA y=EDA y=AMVEDA y=MVEDA y=EXAMIANS y=VEDA y=EDA y=AMVEDA ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + / * % None of these + / * % None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} Error 6 5 9 None of these Error 6 5 9 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 40 30 36 24 32 40 30 36 24 32 ANSWER DOWNLOAD EXAMIANS APP