C Programming C preprocessor Takes care of macros Takes care of include files All of these Takes care of conditional compilation Acts before compilation Takes care of macros Takes care of include files All of these Takes care of conditional compilation Acts before compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} None of These 12PP Compiler Error 12PP345 None of These 12PP Compiler Error 12PP345 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Syntax error 10 0123456789 0 Infinite loop Syntax error 10 0123456789 0 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 III and IV I, II and III I, III and IV II and III I and II III and IV I, II and III I, III and IV II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} Error Garbage Value hi followed by garbage value hi h Error Garbage Value hi followed by garbage value hi h ANSWER DOWNLOAD EXAMIANS APP
C Programming A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as int *p(char *)[] None of these. int(*p(char *))[] int (*p) (char *)[] int *p(char *)[] None of these. int(*p(char *))[] int (*p) (char *)[] ANSWER DOWNLOAD EXAMIANS APP