C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning Good Morning M Good None of these Morning Good Morning M Good None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Array Stack Linked list Queue Register Array Stack Linked list Queue Register ANSWER DOWNLOAD EXAMIANS APP
C Programming The operator > and < are meaningful when used with pointers, if None of these. The pointers point to data of similar type. The pointers point to elements of the same array. The pointers point to structure of similar data type. None of these. The pointers point to data of similar type. The pointers point to elements of the same array. The pointers point to structure of similar data type. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } Syntax error 1 2 3 4 Runtime error 4 5 6 7 4 Syntax error 1 2 3 4 Runtime error 4 5 6 7 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} Garbage Value 2 0 None of These Garbage Value 2 0 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language System programming language Data processing language None of these General purpose language System programming language Data processing language None of these ANSWER DOWNLOAD EXAMIANS APP