Explore Connect Documentation
Snippets
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;
}
Press desired key combination and then press ENTER.