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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is %s and %d in c?

592


What is the sizeof () a pointer?

549


What does sizeof function do?

613


Compare and contrast compilers from interpreters.

684


What is the difference between printf and scanf )?

595






What is wrong with this initialization?

593


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

712


What is the difference between struct and typedef struct in c?

657


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

657


What are variables and it what way is it different from constants?

786


In c programming language, how many parameters can be passed to a function ?

631


What is bash c?

558


hi, which software companys will take,if d candidate's % is jst 55%?

1663


Is malloc memset faster than calloc?

616


What is the difference between if else and switchstatement

1312