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 to compare array with pointer in c?
How can I open files mentioned on the command line, and parse option flags?
What are the application of void data type in c?
In which language linux is written?
What is calloc in c?
Write a program to generate the Fibinocci Series
Write a code to generate divisors of an integer?
What is #pragma statements?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
What are pointers? What are stacks and queues?
What are different types of operators?
what is the significance of static storage class specifier?
hi, which software companys will take,if d candidate's % is jst 55%?
How can I recover the file name given an open stream or file descriptor?
Can we initialize extern variable in c?