main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / rukmanee
int a=200*200/100;
=200*2;
=400;
the value of a=400
Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Why functions are used in c?
What is the auto keyword good for?
Write a program to reverse a given number in c?
What's the right way to use errno?
What is a buffer in c?
What are different types of pointers?
Can stdout be forced to print somewhere other than the screen?
How can my program discover the complete pathname to the executable from which it was invoked?
What are global variables and explain how do you declare them?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is chain pointer in c?
define string ?
Explain how can a program be made to print the line number where an error occurs?
How to compare array with pointer in c?
What is calloc()?