adspace
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
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
What are compound statements?
will u please send me the placement papers to my mail???????????????????
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
How do you determine the length of a string value that was stored in a variable?
ATM machine and railway reservation class/object diagram
What is the general form of a C program?
How do you convert strings to numbers in C?
How can I implement sets or arrays of bits?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Is int a keyword in c?
What are pointers? What are different types of pointers?
Differentiate between null and void pointers.
write a program to find out prime number using sieve case?