in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first

a) 6.6/a

b) 2*a

c) 3*c

d) 2/n



in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c..

Answer / amanuel asmare

C

Is This Answer Correct ?    10 Yes 3 No

Post New Answer

More C Interview Questions

There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?

5 Answers   Microsoft, TCS,


How can I invoke another program or command and trap its output?

0 Answers  


How will you declare an array of three function pointers where each function receives two ints and returns a float?

0 Answers   TISL,


Explain the term printf() and scanf() used in c language?

0 Answers  


What is the right type to use for boolean values in c? Is there a standard type?

0 Answers  






HOW TO SWAP TWO NOS IN ONE STEP?

16 Answers   Satyam,


What is the use of #define preprocessor in c?

0 Answers  


Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?

1 Answers   IBM,


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


What is the 'named constructor idiom'?

0 Answers  


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  


How can you determine the maximum value that a numeric variable can hold?

0 Answers  


Categories