What is the difference between i++ and i+1 ?(in terms of memory)
Answer Posted / rohit
i++ is increment i value by one .. there no need to assign any
other variable to store it..
but in case of i+1 here also incrementing value by one
but if u want to use it in below program we have to
store it in another variable..
so main difference is i++ has less memory compare to i+1
the i++ and i+1 is one and the same who don't accept this answer they may apply this in "c" and then try to prove us wrong
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Explain the use of function toupper() with and example code?
Process by which one bit pattern in to another by bit wise operation is?
What does typedef struct mean?
What is c language used for?
What is zero based addressing?
define string ?
Can a pointer be null?
How can I get random integers in a certain range?
how to write a c program to print list of fruits in alpabetical order?
Where local variables are stored in c?
Describe the header file and its usage in c programming?
Explain what are preprocessor directives?
What is time complexity c?
What is local and global variable in c?
Is c procedural or functional?