c Program to determine largest of three integer quantities
#include
#include
void main()
{
int year;
clrscr();
printf("Enter the year : ");
scanf("%d",&year);
year%4==0?printf("\nLeap year"):printf("\nNot Leap year");
getch();
}
Related Post
Normal 0 false false false EN-US X-NONE ...
#include
#include
void main()
{
float cp,sp,diff;
clrscr();
printf("Enter ...
#include
#include
void main()
{
int num;
clrscr();
pr ...
0 Comments