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=VEDA
y=EXAMIANS
y=MVEDA
y=AMVEDA

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
All of these
Takes care of conditional compilation
Takes care of macros
Acts before compilation

ANSWER DOWNLOAD EXAMIANS APP