C++ Program to print hello linux

#include<iostream>
using namespace std;
int main()
{
    cout<<"hello linux";
    return 0;
}


Comments

Popular posts from this blog

Factorial Program using classes C++

Operator overloading in C++ (Cout and Cin)