C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Queue Stack Array Register Linked list Queue Stack Array Register ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 11 Compilation error 14 12 13 11 Compilation error 14 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } haasi hai absiha None of these asiha haasi hai absiha None of these asiha ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 Compiler Error Linker Error 2 20 Compiler Error Linker Error 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? printf() getch() system() start() main() printf() getch() system() start() main() 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 Veda Exam Veda None of these Exam\0Veda Exam Veda Exam Veda None of these ANSWER DOWNLOAD EXAMIANS APP