C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 45445 54544 54554 45545 45445 54544 54554 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 Who is father of C Language? James Dr. Dennis Ritchie F. Codd Bjarne Stroustrup Gosling James Dr. Dennis Ritchie F. Codd Bjarne Stroustrup Gosling ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include void main(){ char *p = NULL; char *q = 0; if(p) printf(" p "); else printf("nullp"); if(q) printf("q"); else printf(" nullq");} Depends on the compiler x nullq where x can be p or nullp depending on the value of NULL p q nullp nullq Depends on the compiler x nullq where x can be p or nullp depending on the value of NULL p q nullp nullq ANSWER DOWNLOAD EXAMIANS APP
C Programming Size of the array need not be specified, when Initialization is a part of definition It is a declaratrion It is a formal parameter All of these Initialization is a part of definition It is a declaratrion It is a formal parameter All of these ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of conditional compilation Takes care of include files Acts before compilation All of these Takes care of macros Takes care of conditional compilation Takes care of include files Acts before compilation All of these Takes care of macros ANSWER DOWNLOAD EXAMIANS APP