In C programming, what command or code can be used to determine if a number of odd or even?
No Answer is Posted For this Question
Be the First to Post Answer
what is object oriental programing?
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
Write a program to reverse a given number in c?
What are Macros? What are its advantages and disadvantages?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
What is operator precedence?
What is the difference between int and float?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Does c have enums?
How can you call a function, given its name as a string?
Why is not a pointer null after calling free?