which of the following shows the correct hierarchy of arithmetic operations in C

a) (), **, * or/,+ or -

b) (),**,*,/,+,-

c) (),**,/,*,+,-

d) (),/ or *,- or +


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

I came across some code that puts a (void) cast before each call to printf. Why?

0 Answers  


Explain the difference between structs and unions in c?

0 Answers  


what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string

3 Answers  


print a "hello" word without using printf n puts in c language

6 Answers  


Differentiate between Macro and ordinary definition.

0 Answers   Motorola,






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

0 Answers  


Explain what is a pragma?

0 Answers  


What is static memory allocation?

0 Answers  


a simple c program using 'for' loop to display the output 5 4 3 2 1

2 Answers   Google,


string reverse using recursion

0 Answers   Mind Tree,


main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?

1 Answers   GATE,


‎How to define structures? · ‎

0 Answers  


Categories