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