Write a c pgm for leap year
Answer Posted / s.gayathri
void main()
{
int a,y;
clrscr();
printf("enter the year");
scanf("%d",y);
a=y%4;
if(a==1);
printf("leep year");
| Is This Answer Correct ? | 8 Yes | 19 No |
Post New Answer View All Answers
Was 2000 a leap year?
What is the function of this pointer?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Write a program to swap two numbers without using the third variable?
What does dm mean sexually?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is use of pointer?
Explain what are run-time errors?
Tell me when is a void pointer used?
How are structure passing and returning implemented?
Explain how can I remove the trailing spaces from a string?
How can you find out how much memory is available?
Why we use void main in c?
How the c program is executed?
What are types of functions?