Answer Posted / sumon
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
if(a%2==0)
{
printf("a is even number");
else
printf("a is odd number");
}
return o;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is a semicolon (;) put at the end of every program statement?
Difference between Function to pointer and pointer to function
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What are reserved words with a programming language?
Explain bit masking in c?
how we can make 3d venturing graphics on outer interface
What is calloc malloc realloc in c?
Explain how do you override a defined macro?
What is the use of bit field?
How many levels deep can include files be nested?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is structure pointer in c?
What is the use of pragma in embedded c?
Why is C language being considered a middle level language?
What is a good data structure to use for storing lines of text?