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


Please Help Members By Posting Answers For Below Questions

#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

667


Is main is a keyword in c?

610


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1330


What is the purpose of 'register' keyword?

692


What are the functions to open and close the file in c language?

596






What is static function in c?

636


Explain how are 16- and 32-bit numbers stored?

786


In a header file whether functions are declared or defined?

630


Explain what is the difference between a free-standing and a hosted environment?

636


What is "Duff's Device"?

703


Discuss the function of conditional operator, size of operator and comma operator with examples.

681


a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

1588


What will be your course of action for a push operation?

669


What does sizeof int return?

594


Explain bitwise shift operators?

633