int a=0,b=2;
if (a=0)
b=0;
else
b=*10;
What is the value of b ?
Answer Posted / kishore sharma
a=0;
b=2;
but
condition
if(a=0)(b=0)
so
b=*10;
answer is
b=b*10 (b=0)
b=0*10;
0
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Which is best linux os?
What is meant by high-order and low-order bytes?
Where we use clrscr in c?
What is the difference between new and malloc functions?
Write a program with dynamically allocation of variable.
How to get string length of given string in c?
Is c pass by value or reference?
Why do we use null pointer?
Why is structure important for a child?
How do I send escape sequences to control a terminal or other device?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
When is a null pointer used?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is a good data structure to use for storing lines of text?