C++ Program to print hello linux

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


Comments