C Programming Which of the following is not a correct variable type? int float double char real int float double char real 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); 8 7 5 6 9 8 7 5 6 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam veda Examians Both A and B None of these Exam_veda Exam veda Examians Both A and B 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); } 1289 0289 0713 713 Syntax error 1289 0289 0713 713 Syntax error 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 53 65 65 65 065 65 053 65 Syntax error 53 65 65 65 065 65 053 65 ANSWER DOWNLOAD EXAMIANS APP