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

Why header file is used in c?

0 Answers  


Does * p ++ increment p or what it points to?

0 Answers  


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

0 Answers  


What are the 4 types of functions?

0 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,






Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

1 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


What are the types of arrays in c?

0 Answers  


without using arithmatic operator convert an intger variable x into x+1

3 Answers  


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

0 Answers   Sikkim Manipal University,


write a program to gat the digt sum of a number (et. 15= >1+5=6)

2 Answers  


Write a program to compute the following 1!+2!+...n!

4 Answers  


Categories