C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Garbage Value 6 5 Compiler Error Garbage Value 6 5 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of conditional compilation Acts before compilation All of these Takes care of macros Takes care of include files Takes care of conditional compilation Acts before compilation All of these Takes care of macros Takes care of include files ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 0 None of these 10 14 1 0 None of these 10 14 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 10 14 1 0 10 14 1 0 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 When a function is recursively called all the automatic variables are stored in a .......... Stack Linked list Array Register Queue Stack Linked list Array Register Queue ANSWER DOWNLOAD EXAMIANS APP