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); 7 6 9 8 5 7 6 9 8 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} 10 Compiler Error 50 None of These 10 Compiler Error 50 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 2 0 None of These Garbage Value 2 0 None of These Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} Compiler Error 12PP345 None of These 12PP Compiler Error 12PP345 None of These 12PP ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Editing None of these During linking During Preprocessing During Execution During Editing None of these During linking During Preprocessing During Execution ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? * / + % None of these * / + % None of these ANSWER DOWNLOAD EXAMIANS APP