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 do I convert a string to all upper or lower case?
what r callback function?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
How can you be sure that a program follows the ANSI C standard?
difference between i++* and *++i
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
find the sum of two matrices and WAP for it.
What are the difference between a free-standing and a hosted environment?
what is the function of pragma directive in c?
Explain bitwise shift operators?
What does double pointer mean in c?