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 bubble sort in c?
What are structure types in C?
How are strings stored in c?
What is masking?
What is ## preprocessor operator in c?
Differentiate between new and malloc(), delete and free() ?
Why c is procedure oriented?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Describe static function with its usage?
What is the difference between c &c++?
Why isn't any of this standardized in c? Any real program has to do some of these things.
Write a program to generate random numbers in c?
Write programs for String Reversal & Palindrome check
Is array a primitive data type in c?
provide an example of the Group by clause, when would you use this clause