C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} M Good Morning Morning None of these Good M Good Morning Morning None of these Good 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 h hi Error Garbage Value hi followed by garbage value h hi ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 None of These 11 12 13 None of These 11 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? gets() puts() scanf() printf() None of these gets() puts() scanf() printf() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} Error 6 5 9 None of these Error 6 5 9 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long short int char float long short int char float ANSWER DOWNLOAD EXAMIANS APP