C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45445 45545 54554 54544 45445 45545 54554 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Random order First In First Out order Last In First Out order Iterative order Parallel order Random order First In First Out order Last In First Out order Iterative order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 2 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); 5 8 6 7 9 5 8 6 7 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Pick the correct statements.I. The body of a function should have only one return statement.II. The body of a function may have many return statements.III. A function can return only one value to the calling environment.IV. If return statement is omitted, then the function does its job but returns no value to the calling environment. II and IV III and IV I and III II and III I and II II and IV III and IV I and III II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam_veda Examians Exam veda Both A and B None of these Exam_veda Examians Exam veda Both A and B None of these ANSWER DOWNLOAD EXAMIANS APP