an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order

a) assignment, relational, arithematic

b) arithematic, relational, assignment

c) relational, arithematic, assignment

d) assignment, arithematic, relational


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

Post New Answer

More C Interview Questions

f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


How can I increase the allowable number of simultaneously open files?

1 Answers   CSC,


What are the commands should be given before weiting C Program i.e, Cd.. like

4 Answers   IBM, Infonet, Satyam, Tech Mahindra,


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

0 Answers  


1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā€œ%dā€,x); --x; } }

7 Answers   CSC,






what is disadvantage of pointer in C

13 Answers   Tech Mahindra,


What is the use of volatile?

0 Answers  


What is sizeof c?

0 Answers  


Can we replace the struct function in tree syntax with a union?

0 Answers   Huawei,


what is the difference between declaration and definition of a variable or function ?

3 Answers  


Explain enumerated types in c language?

0 Answers  


Why c is called free form language?

0 Answers  


Categories