Check whether a number is divisible by 5 or not program in C
This is our first program
in C programming language. This C program
will print the text
“Hello World!” on the console output screen.
In this post we will learn how to
write a C Program and explore each statements
in this C Program and many more.
/*
Program : Check Number Divisible By 5 Or Not
Filename : divisibleby5.c
IDE Used To Developed : CodeBlocks
Developed By : Pavito Golui
*/
#include<stdio.h>
int main()
{
int num;
printf("Enter a number : ");
scanf("%d",&num);
if(year%5==0)
{
printf("%d is divisible by 5 \n",num);
}
else
{
printf("%d is not divisible by 5 \n",num);
}
return(0);
}
Program : Check Number Divisible By 5 Or Not
Filename : divisibleby5.c
IDE Used To Developed : CodeBlocks
Developed By : Pavito Golui
*/
#include<stdio.h>
int main()
{
int num;
printf("Enter a number : ");
scanf("%d",&num);
if(year%5==0)
{
printf("%d is divisible by 5 \n",num);
}
else
{
printf("%d is not divisible by 5 \n",num);
}
return(0);
}
Output :
Enter a number : 220
220 is divisible by 5
again run-:
Enter a number :31
31 is not divisible by 5
Explanation Of Each Statements In The Program:-
To learn any programming language, practical is must important
than others factors. First of
all we learn and understand the language and then
we implements, each things related to
the language and explore about it. After
all we are interested in making products (Software)
by using that language.