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
How can you find the exact size of a data type in c?
What is an lvalue in c?
What language is lisp written in?
find the sum of two matrices and WAP for it.
what are bit fields in c?
What are the benefits of c language?
Where is volatile variable stored?
What is volatile, register definition in C
What is array in c with example?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is graph in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Write a program to check whether a number is prime or not using c?
How would you rename a function in C?
The statement, int(*x[]) () what does in indicate?