which operator having lowest precedence??
a.)+ b.)++ c.)= d.)%
Answers were Sorted based on User's Feedback
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 |
What is double pointer in c?
please give me some tips for the placement in the TCS.
How do you do dynamic memory allocation in C applications?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
what is the difference between postfix and prefix unary increment operators?
Why doesnt long int work?
What is indirection?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
what is the difference between while and do while?
what is the difference between declaration and definition of a variable or function ?
What are extern variables in c?
How are strings stored in c?