C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning None of these Good Morning Good M Morning None of these Good Morning Good M 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); 0 0123456789 10 Syntax error Infinite loop 0 0123456789 10 Syntax error Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable None of these. It should be initialized. It should be declared. It should be both declared and initialized. None of these. It should be initialized. It should be declared. It should be both declared and initialized. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);} Compiler Error 50 None of These 10 Compiler Error 50 None of These 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stdin no such function in 'C'. Data file stderr string stdin no such function in 'C'. Data file stderr string ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? system() main() start() printf() getch() system() main() start() printf() getch() ANSWER DOWNLOAD EXAMIANS APP