Write a C program to check a number even or odd, without using
any relational, arithmetic operator and any loops.
Answer / geniuineprogrammer
u can use bitwise operator
if (no & 1) {
its odd
}
| Is This Answer Correct ? | 6 Yes | 1 No |
write a program whose output will be- 1 12 123 1234
which operator is known as dummy operator in c?
What is printf () in c?
What is a lvalue
Write a c program to demonstrate Type casting in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What are qualifiers and modifiers c?
write a function which accept two numbers from main() and interchange them using pointers?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
C program to perform stack operation using singly linked list