C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Preprocessing None of these During Editing During Execution During linking During Preprocessing None of these During Editing During Execution During linking ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Gosling F. Codd Dennis Ritchie James Bjarne Stroustrup Dr. Gosling F. Codd Dennis Ritchie James Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } absiha haasi hai None of these asiha absiha haasi hai None of these asiha ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 1 2 3 10 4 5 6 7 8 9 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 1 2 3 10 4 5 6 7 8 9 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? Program do no return a value. 2 1 -1 Program do no return a value. 2 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} 24 None of these 20 25 30 24 None of these 20 25 30 ANSWER DOWNLOAD EXAMIANS APP