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


Please Help Members By Posting Answers For Below Questions

Are pointers integers in c?

611


What is null in c?

598


What is meant by int main ()?

716


Do you know the use of fflush() function?

603


What are 3 types of structures?

594






What is scope of variable in c?

569


What is .obj file in c?

648


Explain what are the standard predefined macros?

651


How can I list all of the predefined identifiers?

581


How can I read data from data files with particular formats?

603


Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.

651


How do you search data in a data file using random access method?

831


Explain what is the heap?

622


What do you mean by c what are the main characteristics of c language?

572


What are derived data types in c?

610