What will i and j equal after the code below is executed? Explain your answer.
After the above code executes, i will equal 6, but j will equal 5. Understanding the reason for this is fundamental to understanding how the unary increment ( ++ ) and decrement ( -- ) operators work in C++.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
Can we specify variable field width in a scanf() format string? If possible how?
What new()is different from malloc()?
What is an operator in c++?
What are inline functions? What is the syntax for defining an inline function?
What is the role of copy constructor in copying of thrown objects?
What is c++ and its features?
What are the basics of classifying different storage types, why?
2 Answers Astergate, Symphony,
What does #define mean in c++?
Can we define function inside main in c++?
What is a conversion constructor?
Why can’t you call invariants() as the first line of your constructor?