C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning M None of these Good Morning Good Morning M None of these Good Morning Good ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} will print Hello World None of These Compiler Error Can't Say will print Hello World None of These Compiler Error Can't Say ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam\0Veda Exam Exam Veda Veda None of these Exam\0Veda Exam Exam Veda Veda None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 0 2 3 1 0 2 3 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} 5 4 3 2 1 None of These 0 0 0 0 Infinite Loop 5 4 3 2 1 None of These 0 0 0 0 Infinite Loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real int double float char real int double float char ANSWER DOWNLOAD EXAMIANS APP