C++ Help

Husnain

Well-known member
Joined
May 20, 2016
Messages
228
Reaction score
9
Location
Mars
New in C++ but wtf

HNRTUIP.png

Any help?!
 

0B36

Expert
Joined
Jan 6, 2014
Messages
1,324
Reaction score
8
http://www.cplusplus.com/doc/tutorial/program_structure/

You can test it here first - http://cpp.sh/

As for the error, the build failed to compile,


[shcode=cpp]
#include <iostream>
using namespace std;

int main()

{
int a;
a = 1;
cout << a;
}
[/shcode]
 
Top