Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- int a;
- printf("Enter the value of a== ");
- scanf("%d",&a);
- if(a%5==0)
- printf("The number can be divided by 5");
- else
- printf("The number can't be divided by 5");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement