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

Answers were Sorted based on User's Feedback



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

Answer / siva

++

Is This Answer Correct ?    16 Yes 2 No

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

Answer / sivasiva

++

Is This Answer Correct ?    8 Yes 1 No

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

Answer / margarate mary

%

Is This Answer Correct ?    3 Yes 1 No

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

Answer / jalal

a)+

Is This Answer Correct ?    3 Yes 8 No

Post New Answer

More C Interview Questions

Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

0 Answers   Infosys,


What does != Mean in c?

0 Answers  


Why is c called "mother" language?

0 Answers  


Can you write the algorithm for Queue?

0 Answers   College School Exams Tests, TCS,


Explain Basic concepts of C language?

0 Answers   EXL,






Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?

1 Answers   HCL,


what is default constructor?

2 Answers   HCL,


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


What are the advantages of external class?

0 Answers  


what is diference between return 0 and return NULL??

3 Answers  


Under what circumstances does a name clash occur?

0 Answers   InterGraph,


What are examples of structures?

0 Answers  


Categories