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);}

No output at all.
NOITANIMAXE C
NOITANIMAXE
Syntax error
C

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of statements that perform some specific task.
Function is a block of code that performs a specific task. It has a name and it is reusable.
All of these

ANSWER DOWNLOAD EXAMIANS APP