Ad
Fundamentals

Cleaned thigns up a little

Code
Diff
  • #include <iostream>
    
    int helloCplusplus(){
      std::cout << "Hello Cplusplus\n";
      return 0;
    }
    • #include <iostream>
    • using namespace std;
    • int helloCplusplus(){
    • cout << "Hello Cplusplus" << '\n';
    • std::cout << "Hello Cplusplus\n";
    • return 0;
    • }