Problem Statement
Write a C program that checks whether a given number is divisible by both 5 and 11.
Your program should read an integer from standard input and output whether the number is divisible by both 5 and 11 or not.
Logic to implement:
- A number is divisible by 5 if the remainder when divided by 5 is 0 (n % 5 == 0)
- A number is divisible by 11 if the remainder when divided by 11 is 0 (n % 11 == 0)
- A number is divisible by both 5 and 11 if it satisfies both conditions above
Use if-else statements to implement the divisibility check logic.