namaste duniya program↵
==================↵
↵
#include <iostream>↵
using namespace std;↵
↵
int main(){↵
cout<<"hello worldnamaste duniya";↵
return 0;↵
}↵
↵
↵
↵
/*#include <iostream> is a header file library that helps with input and output objects in C++ language.↵
↵
Using namespace std use for the objects and variables from the standard library.↵
↵
*/↵
↵
==================↵
↵
#include <iostream>↵
using namespace std;↵
↵
int main(){↵
cout<<"
return 0;↵
}↵
↵
↵
↵
/*#include <iostream> is a header file library that helps with input and output objects in C++ language.↵
↵
Using namespace std use for the objects and variables from the standard library.↵
↵
*/↵
↵