main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / shafi
int a=200*200/100;/*it is related with assignment operator so
it's right->left shift*/
=200*2;
=400;
the value of a=400
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is %g in c?
Explain setjmp()?
Is c is a low level language?
What is the use of header files?
Why do we use & in c?
What is difference between constant pointer and constant variable?
What is a good data structure to use for storing lines of text?
What do you mean by dynamic memory allocation in c? What functions are used?
In a byte, what is the maximum decimal number that you can accommodate?
What is an auto keyword in c?
Write a c program to demonstrate character and string constants?
Why flag is used in c?
In c language can we compile a program without main() function?
difference between Low, Middle, High Level languages in c ?
What are file streams?