C Programming C Language developed at _________? Sun Microsystems in 1973 Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1970 AT & T's Bell Laboratories of USA in 1972 Sun Microsystems in 1973 Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1970 AT & T's Bell Laboratories of USA in 1972 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 13 12 14 11 Compilation error 13 12 14 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 3 2 1 0 infinity loop no output 3 2 1 3 2 1 0 infinity loop no output ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} Error 1 100 Error 1 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 -1 1 Program do no return a value. 2 -1 1 Program do no return a value. ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command has # as the first character comes before the first executable statement need not start on the first column need not start on a new line has # as the first character comes before the first executable statement need not start on the first column need not start on a new line ANSWER DOWNLOAD EXAMIANS APP