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 30 25 20 None of these 24 30 25 20 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 10 11 12 13 14 Infinite loop None of these 9 10 11 12 13 10 11 12 13 14 15 10 11 12 13 14 Infinite loop None of these 9 10 11 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Last In First Out order Iterative order Parallel order Random order First In First Out order Last In First Out order Iterative order Parallel order Random order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} %d\n None of These Error 300 %d\n None of These Error 300 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a); Garbage Value 13 12 15 14 Garbage Value 13 12 15 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Preprocessing During Editing During linking None of these During Execution During Preprocessing During Editing During linking None of these During Execution ANSWER DOWNLOAD EXAMIANS APP