Write a c pgm for leap year
Answers were Sorted based on User's Feedback
Answer / 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 |
How does pointer work in c?
What is structure in c explain with example?
What is the difference between abs() and fabs() functions?
What is operator precedence?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
write a addition of two no. program with out using printf,scanf,puts .
Hi, main() { } Is a user defined function or Built in Functionn
how to swap two integers 1 and 32767 without using third variable
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
triangle number finding program...
Is array name a pointer?
What is a null pointer in c?