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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on a new line
has # as the first character
comes before the first executable statement
need not start on the first column

ANSWER DOWNLOAD EXAMIANS APP