C Programming
What is the output of given program if user enter value 99?#includevoid main(){int i;printf("Enter a number:");scanf("%d", &i); // 99 is given as input.if(i%5 == 0){printf("nNumber entered is divisible by 5"); }}

complier error
Enter a number:99
Run time error
Enter a number:99 Number is divisible by 5

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.
All of these
Makes the debugging task easier.
Helps to avoid repeated programming across programs.

ANSWER DOWNLOAD EXAMIANS APP