Explore
Connect
Documentation
Snippets
Log in
Sign up
1
2
3
4
5
6
7
8
9
10
11
// include the C++ input and output header file
#include
<iostream>
// the statement below prints 3 (cout is an output
stream defined
// in the header file iostream)
int
main() {
std::cout <<
3
;
return
0
;
}
Enter to Rename, Shift+Enter to Preview
Run