which operator having highest precedence?
a.)+ b.)++ c.)= d.)%
Answer Posted / sivasiva
++
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is the use of a semicolon (;) at the end of every program statement?
difference between Low, Middle, High Level languages in c ?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the difference between scanf and fscanf?
Can the “if” function be used in comparing strings?
What is clrscr ()?
What does stand for?
What is array within structure?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is local and global variable in c?
What is an array? What the different types of arrays in c?
Give basis knowledge of web designing ...
Is there a way to jump out of a function or functions?
What is the easiest sorting method to use?