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 fflush() function?
How does free() know explain how much memory to release?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the difference between typedef struct and struct?
How is a null pointer different from a dangling pointer?
What is #line?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
How can type-insensitive macros be created?
Describe newline escape sequence with a sample program?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Can a program have two main functions?
What is oops c?
Explain setjmp()?
Write a program to print fibonacci series without using recursion?
what are the 10 different models of writing an addition program in C language?