Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Hello World/src/First output.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// First Output
// A basic program to familiarize with the basic syntax of C++ programming

#include <iostream>

using namespace std;

int main() {
cout << "The text that you need to display as an output (on the screen)" << endl; // cout<<""; is used for outputing a string/text.

return 0;// the ' ; ' marks the end of the line / line of code.
}
12 changes: 0 additions & 12 deletions Hello World/src/Hello World.cpp

This file was deleted.