C Programming Which is the only function all C programs must contain? getch() system() main() start() printf() getch() system() main() start() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming C Language developed at _________? AT & T's Bell Laboratories of USA in 1970 Cambridge University in 1972 Sun Microsystems in 1973 AT & T's Bell Laboratories of USA in 1972 AT & T's Bell Laboratories of USA in 1970 Cambridge University in 1972 Sun Microsystems in 1973 AT & T's Bell Laboratories of USA in 1972 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? Runtime error 6 8 No output Syntax error Runtime error 6 8 No output Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to 0 Complier error -10 to infinite -10 to -1 -10 to 0 Complier error -10 to infinite -10 to -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Comma operator Conditional operator Assignment operator Division operator Unary-operator Comma operator Conditional operator Assignment operator Division operator Unary-operator ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet A special symbol other than underscore Both of the above A number An alphabet A special symbol other than underscore Both of the above A number ANSWER DOWNLOAD EXAMIANS APP