May I ask you what the future purpose of this test will be?
I mean:
Are you going to comercialize it?
Or will you be offering it for free?
And for who will these tests be intended?...
User Profile
Collapse
-
I see that you didn't cover unsized array declarations, so I'll provide an example here.
As already told by weaknessforcats, the following declaration isn't possible:
unless you directly initialize the array, like this:Code:int array[]; // not possible
Code:int array[] = {1,2,3,4,5}; // an array of 5 elementsLeave a comment:
-
What error do you get?
Can you manually compile the following program from command line?
(save this file as hello.cpp)Code:#include <iostream> int main() { std::cout << "Hello World!" << std::endl; }
Open a command line window (Start -> Run: cmd), switch to the directory where you saved this file and enter the following command:...Leave a comment:
No activity results to display
Show More
Leave a comment: