Answer Posted / moonlight
++i is pre increment and i++ is post increment. It is useful
in any codition.in pre increment it increases value of i
first then check it's value and in post increment it first
check it's value then increment.
| Is This Answer Correct ? | 29 Yes | 1 No |
Post New Answer View All Answers
How can you allocate arrays or structures bigger than 64K?
Why is not a pointer null after calling free?
Why n++ execute faster than n+1 ?
What is sizeof c?
In C language, a variable name cannot contain?
Can you apply link and association interchangeably?
What are the uses of a pointer?
What are the string functions? List some string functions available in c.
List the difference between a While & Do While loops?
What is a keyword?
What is static volatile in c?
Why do we need arrays in c?
how to count no of words,characters,lines in a paragraph.
What is dynamic variable in c?
Can two or more operators such as and be combined in a single line of program code?