int a=0,b=2;
if (a=0)
b=0;
else
b=*10;
What is the value of b ?
Answer Posted / sandeep kumar
if (a=0)
is a wrong statement.
Since it should be
if (a==0)
so, it will throw an error
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a void pointer in c?
Why is python slower than c?
How can you increase the allowable number of simultaneously open files?
The difference between printf and fprintf is ?
Add Two Numbers Without Using the Addition Operator
Explain why C language is procedural?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What is the purpose of void pointer?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Why pointers are used in c?
What is a wrapper function in c?
Is there a built-in function in C that can be used for sorting data?
How can I sort a linked list?
What is the explanation for cyclic nature of data types in c?
What is c language used for?