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 |
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
Write a code to generate divisors of an integer?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What are static variables, and where are they stored?
Is array name a pointer?
how to devloped c lenguege?
What is time complexity c?
What do you know about the use of bit field?
What are the functions to open and close file in c language?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
what is the program to display your name in any color?