x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / priya
answer: 1
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Are pointers integer?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
For what purpose null pointer used?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
How can I get the current date or time of day in a c program?
What is %g in c?
Does c have an equivalent to pascals with statement?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How can a program be made to print the name of a source file where an error occurs?
Explain about the constants which help in debugging?
What is difference between arrays and pointers?
How many parameters should a function have?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Why can’t we compare structures?
What is volatile variable how do you declare it?