main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / xxxxxxx
among '* ','/' arithematic operators / has a higher
precedence.so 200/100 is enclosed in brackets and multiplied
with 200
so a=200*(200/100)=200*2=400
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How can I read data from data files with particular formats?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Is c pass by value or reference?
How is actual parameter different from the formal parameter?
What are the two types of functions in c?
What is the explanation for prototype function in c?
Write a program with dynamically allocation of variable.
what is use of malloc and calloc?
What is the difference between malloc() and calloc() function in c language?
What does the && operator do in a program code?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Explain the difference between #include "..." And #include <...> In c?
how to capitalise first letter of each word in a given string?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Does free set pointer to null?