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

Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage

7 Answers   Accenture,


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

0 Answers  


write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview

2 Answers   Satyam, UNIS, Wipro,


What is #include conio h?

0 Answers  


Tell me when would you use a pointer to a function?

0 Answers  






write a program to print calender using for loop.

1 Answers   HCL, TCS,


char p="data"; printf(p);

2 Answers  


Explain what is the purpose of "extern" keyword in a function declaration?

0 Answers  


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


How is a two dimensional array passed to function when the order of matrix is not known at complie time?

1 Answers   CSC,


how to use enum datatype?Please explain me?

3 Answers   Excel,


What is the use of sizeof () in c?

0 Answers  


Categories