C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 5 9 8 7 6 5 9 8 7 6 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);} 25 None of these 30 20 24 25 None of these 30 20 24 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} Error -2 2 1 Error -2 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The number of successful read input values. 1 The actual values read for each argument. ASCII value of the input read. 0 The number of successful read input values. 1 The actual values read for each argument. ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language General purpose language None of these Data processing language System programming language General purpose language None of these Data processing language ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential and Random None of these Random Sequential Sequential and Random None of these Random Sequential ANSWER DOWNLOAD EXAMIANS APP