which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%

Answers were Sorted based on User's Feedback



which operator having lowest precedence?? a.)+ b.)++ c.)= d.)% ..

Answer / jalal

c)=

Is This Answer Correct ?    17 Yes 0 No

which operator having lowest precedence?? a.)+ b.)++ c.)= d.)% ..

Answer / amala v

c.)=

Is This Answer Correct ?    5 Yes 1 No

which operator having lowest precedence?? a.)+ b.)++ c.)= d.)% ..

Answer / sivasiva

+

Is This Answer Correct ?    2 Yes 3 No

which operator having lowest precedence?? a.)+ b.)++ c.)= d.)% ..

Answer / cynthia,1st b.sc.,itm

option d)%

as ++ is unary operator with highest precedence,
= is assingnment operator with the next level of precedence
and + is an arithemetic operator with the next level of
prececende.

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More C Interview Questions

Which node is more powerful and can handle local information processing or graphics processing?

0 Answers  


Write a programme to find even numbers without using any conditional statement?

3 Answers   ADD Software, Infosys,


char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)

7 Answers   Mascot,


What is Your Name :)

1 Answers  


Why is main function so important?

0 Answers  


main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }

10 Answers   TCS, Vector,


how to reverse string "Hello World" by using pointers only. Without any temp var

1 Answers  


Write a c program to demonstrate character and string constants?

0 Answers  


Why is C language being considered a middle level language?

0 Answers  


write an algorithm to display a square matrix.

0 Answers  


What are the functions to open and close the file in c language?

0 Answers  


Why header files are used?

0 Answers  


Categories