Answer Posted / sameer.chaudhari
main()
{
int num;
printf("Plz enter the number :=> ");
scanf("%d",&num);
if (!(num & 1))
printf("Even");
getch();
}
| Is This Answer Correct ? | 41 Yes | 33 No |
Post New Answer View All Answers
#include
What is c variable?
What does malloc () calloc () realloc () free () do?
please send me the code for multiplying sparse matrix using c
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is bin sh c?
How can I copy just a portion of a string?
Write a program to generate random numbers in c?
Which built-in library function can be used to match a patter from the string?
What is a static variable in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Differentiate between null and void pointers.
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Difference between pass by reference and pass by value?