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

What is static and auto variables in c?

0 Answers  


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


Explain what is the use of a semicolon (;) at the end of every program statement?

0 Answers  


Can we assign integer value to char in c?

0 Answers  


If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.

12 Answers   Google,






Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

0 Answers   Celstream,


What is pointer and structure in c?

0 Answers  


What's a "sequence point"?

3 Answers  


What language is c written?

0 Answers  


Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?

1 Answers   Oracle,


What is extern keyword in c?

0 Answers  


what is the maximum no. of bytes calloc can allocate

4 Answers   Mphasis,


Categories