C++ uses the postfix increment operator whereas ++C uses the prefix increment operator. Both do exactly the same thing; they increment C (the same as C=C+1 increments C). The difference is only in the return value. ++C returns a reference to C, whereas C++ returns the original value of C.
G++ is the Gnu compiler's extension for C++. It is not a different language. It simply allows you to use the GCC compiler to write C++ code.
Don't write, it is already written, google for 'cpp'.
Divide it by 1000.
I believe, you can use C-function - printf().
Its limited only by available memory.
Yes.
Yes.
Nothing. In C++ you could write a C compiler. So, everything that can be done with C, can be also done in C++.
Write a function that print a triangle of stars.
#define biggest (a) > (b) && (a) > (c) ? (a) : (b) > (c) ? (b) : (c)
G++ is the Gnu compiler's extension for C++. It is not a different language. It simply allows you to use the GCC compiler to write C++ code.
Don't write, it is already written, google for 'cpp'.
By learning how to program on C+.
Divide it by 1000.
No.
You don't write an algorithm for a C++ program, unless you are documenting the C++ program after-the-fact. The normal procedure is to write the algorithm first, in a language independent fashion, and then translate that stated algorithm into C++ code, or into whatever language you wish.
I believe, you can use C-function - printf().