![]() |
.. (לתיקייה המכילה) | |
Can we divide our code into multiple cpp files, or must we put all our code inside header files and cmatrix.ypp? | |
You can choose to divide your code in any way, as long as it compiles according to the command lines that appears in the assisgnment. |
what comes first, ++ or unary minus? | |
The ++ precedence is the highest among the scalars. |
can ++ be used multiple times on the same variable? | |
It can be used only on identifiers. a++++ is illegal. |
What is the exact definition of the ++ operator?
What is this expression , x = i++, equivalent to?
| |
1,2 will both be accepted. |
In the assignment instructions, printError2.o appears, while the file that was published is printError.o. | |
The published file is the correct one. |