Skip to content

Commit

Permalink
hello world! program
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabh nishad committed Apr 4, 2024
1 parent dbec0bf commit 84340bd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions PROGRAMS/01-hello-world.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include<iostream>

using namespace std;

int main(int argc, char const *argv[])
{
cout<<"hello world!";
return 0;

}

0 comments on commit 84340bd

Please sign in to comment.