Write a pro-gramme to determine whether the number is even or odd?
Answer / azad sable, chiplun
void main();
{
int n;
clrscr();
printf("enter any number");
scanf("%d",&n);
if(n%2==0)
printf("\nthe number is even");
else
printf("\nthe number is odd");
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 0 No |
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
Write a C program to perform some of the operation which can be performed using Single linked list
What are the advantages of using Unions?
Explain data types & how many data types supported by c?
How Many Header Files in c?
Why is structure important for a child?
How can my program discover the complete pathname to the executable from which it was invoked?
What are the advantages of using linked list for tree construction?
Explain why c is faster than c++?
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
write a program of palindrome(madam=madam) using pointer?
how to execute with out main in cprogram