C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} NOITANIMAXE Syntax error C No output at all. NOITANIMAXE C NOITANIMAXE Syntax error C No output at all. NOITANIMAXE C ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} None of these Exam Exam Veda Veda Exam\0Veda None of these Exam Exam Veda Veda Exam\0Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? exam_veda examians1 _examians 1examians exam_veda examians1 _examians 1examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Size of the array need not be specified, when All of these Initialization is a part of definition It is a declaratrion It is a formal parameter All of these Initialization is a part of definition It is a declaratrion It is a formal parameter ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 20 -1 19 16 17 20 -1 19 16 17 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; None of these *float ptr; float ptr; float *ptr; None of these *float ptr; float ptr; ANSWER DOWNLOAD EXAMIANS APP