/*To check wheather given num is divisible by 5 or not*/ main () { int a; clrscr (); printf ("Enter any Number:-"); scanf ("%d",&a); if((a%5)==0) printf("%d is divisible by 5."); else printf("%d is not divisible by 5."); } /*by:-AMAR*/