Earn while u Learn

Tips tweaks hacks on computer with C C++ VB tutorials and ways to earn money online

ad

To check a year is leap year or not

This code will create a program to check if a year is leap year or not.
Code:
__________________________________________________________

#include(stdio.h)
#include(conio.h)
main()
{
int year,leap;
printf("\tEnter a year Ex. 1990\n");
scanf("%d",&year);
if(a%4==0)
{
printf("%d is a leap year\n",year);
}
else
{
printf("%d is not a leap year",year);
}
getch();
}
 __________________________________________________________

To find a greater number between two numbers in C

This code will help you to find a greater number between two numbers in C
Code:
__________________________________________________________

#include(stdio.h)
#include(conio.h)
main()
{
int a,b;
printf("Enter a number\n");
scanf("%d",&a);
printf("Enter a number\n");
scanf("%d",&b);
if(a>b)
{
printf("%d is greater than %d\n",a,b);
}
else if(a,b)
{
printf("%d is less than %d\n",a,b);
}
else
{
printf("%d is equal to %d\n",a,b);
}
getch();
}
__________________________________________________________

To find out Even or Odd no. in C

This program is a very simple example of " if statement in c" Hope you try to understand the code.
Code:
__________________________________________________________
#include(stdio.h)
#include(conio.h)
main()
{
int number;
printf("Enter the number to be checked");
scanf("%d",&a);
if(a%2==0)
{
printf("\t\nThe number you provided is a Even number\n\t");
}
else
{
printf("The number you provided is a Odd number");
}
getch();
}
__________________________________________________________

Sign in / Join

Labels