C Programming Which of the following operator takes only integer operands? / None of these % * + / None of these % * + ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 Error 1 1 1 garbage values 0 0 0 Error 1 1 1 garbage values ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam_veda None of these Exam veda Both A and B Examians Exam_veda None of these Exam veda Both A and B Examians 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 9 5 6 7 8 9 5 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0289 1289 0713 713 Syntax error 0289 1289 0713 713 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } None of these. Error Will make an infinite loop. Some address will be printed. None of these. Error Will make an infinite loop. Some address will be printed. ANSWER DOWNLOAD EXAMIANS APP