Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

200*200/100

here both *,% contained same priority and also left->right
shift so the excusion will start from left->right so answer is
400.

Is This Answer Correct ?    4 Yes 8 No

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

Answer / ismail

400

Is This Answer Correct ?    7 Yes 12 No

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

Answer / rukmanee

int a=200*200/100;
=200*2;
=400;
the value of a=400

Is This Answer Correct ?    1 Yes 7 No

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

Answer / jaga

a=200*200
=40000/100
=400
a=400

Is This Answer Correct ?    7 Yes 16 No

Post New Answer

More C Interview Questions

why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?

2 Answers  


Why is structure important for a child?

0 Answers  


Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..

2 Answers  


What is time null in c?

0 Answers  


Difference between MAC vs. IP Addressing

0 Answers  


What is 1f in c?

0 Answers  


write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};

5 Answers  


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.

0 Answers  


atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation

0 Answers  


x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????

3 Answers  


How can I run c program?

0 Answers  


Categories