C Programming Which of the following is not a correct variable type? float char int real double float char int real double ANSWER DOWNLOAD EXAMIANS APP
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); 6 5 7 8 9 6 5 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam_veda Both A and B Examians None of these Exam veda Exam_veda Both A and B Examians None of these Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 1289 0289 Syntax error 713 0713 1289 0289 Syntax error 713 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} Syntax error 053 65 065 65 65 65 53 65 Syntax error 053 65 065 65 65 65 53 65 ANSWER DOWNLOAD EXAMIANS APP