main()
{int a=200*200/100;
printf("%d",a);
}

Answers were Sorted based on User's Feedback



main() {int a=200*200/100; printf("%d",a); }..

Answer / vishi

200*200=40000;
as the range of int(-32768 to +32767)
40000 exeeds +32767 &hence goes to the other side,
40000-32767=7233;
now (-32768+7233)=(-25535);
hence the value of 40000 will be -25535;
result be (-25535/100)="-255"(integer value).

Is This Answer Correct ?    24 Yes 2 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / vignesh1988i

output is : 400

Is This Answer Correct ?    36 Yes 18 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / pravin

200*200=40000;
as the range of int(-32768 to +32767)
40000 exeeds +32767 &hence goes to the other side,
40000-32767=7233;
now (-32768+7233)=(-25535);
hence the value of 40000 will be -25535;
result be (-24435/100)="-244"(integer value).
thank u

Is This Answer Correct ?    26 Yes 10 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / deepak roniya

explanation 7 is right......i also run this program and the
result is -255

Is This Answer Correct ?    10 Yes 1 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / sreepal

-255

Is This Answer Correct ?    5 Yes 1 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / vivek shah

because
int range 32767 to -32768
200*200=4000;
so out of range

-255

Is This Answer Correct ?    2 Yes 0 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / tanvi jain

200*200=40000;
as the range of int(-32768 to +32767)
40000 exeeds +32767 &hence goes to the other side,
40000-32767=7233;
now (-32768+7233)=(-25535);
hence the value of 40000 will be -25535;
result be (-25535/100)="-255"(integer value).

Is This Answer Correct ?    0 Yes 0 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / 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 ?    0 Yes 0 No

main() {int a=200*200/100; printf("%d",a); }..

Answer / 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

main() {int a=200*200/100; printf("%d",a); }..

Answer / pawan singh

400

Is This Answer Correct ?    12 Yes 14 No

Post New Answer

More C Interview Questions

Binary tree traversing

1 Answers   Qualcomm,


List the different types of c tokens?

0 Answers  


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

0 Answers  


What is meant by inheritance?

0 Answers  


How does #define work?

0 Answers  






how memory store byte

4 Answers   Huawei,


Explain what’s a signal? Explain what do I use signals for?

0 Answers  


What are c identifiers?

0 Answers  


Write a program to find the biggest number of three numbers in c?

0 Answers  


What does static mean in c?

1 Answers  


what is answer for perfect number????????????????

1 Answers  


What is the modulus operator?

0 Answers  


Categories