C Programming An array elements are always stored in ________ memory locations. None of these Sequential Sequential and Random Random None of these Sequential Sequential and Random Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Gosling James F. Codd Dennis Ritchie Bjarne Stroustrup Dr. Gosling James F. Codd Dennis Ritchie Bjarne Stroustrup 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 4 1 2 3 4 4 5 6 7 Runtime error Syntax error 4 1 2 3 4 4 5 6 7 Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff2 fff4 fff3 fff0 fff1 fff2 fff4 fff3 fff0 fff1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 15 10 12 11 15 10 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} 11 1 Error 12 11 1 Error 12 ANSWER DOWNLOAD EXAMIANS APP