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 |
What does 3 periods mean in texting?
Differentiate between ordinary variable and pointer in c.
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
what is computer engg
read a number & print all its devisors using c-program?
How are 16- and 32-bit numbers stored?
What are the advantages and disadvantages of c language?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
Why do we use null pointer?
How is = symbol different from == symbol in c programming?