What is the difference between i++ and i+1 ?(in terms of memory)
Answer Posted / johnsm
i++ is an increment and assign to i but i+1 is just an
increment of i, but it doesnt mean the value in i got changed here.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
how many errors in c explain deply
What is class and object in c?
Tell me what is the purpose of 'register' keyword in c language?
Should a function contain a return statement if it does not return a value?
What are the various types of control structures in programming?
Explain logical errors? Compare with syntax errors.
What are the types of arrays in c?
How to declare a variable?
What is the difference between the = symbol and == symbol?
What is an arrays?
write an algorithm to display a square matrix.
Tell me when would you use a pointer to a function?
Explain how are portions of a program disabled in demo versions?
string reverse using recursion
What is formal argument?