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
What is a good data structure to use for storing lines of text?
Write a code to generate divisors of an integer?
What does the format %10.2 mean when included in a printf statement?
What is a null string in c?
How to get string length of given string in c?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Which is the memory area not included in C program? give the reason
What is string function c?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What are high level languages like C and FORTRAN also known as?
What is a loop?
What does stand for?
Are there namespaces in c?
What is the difference between scanf and fscanf?
What are control structures? What are the different types?