First Simple Program in C++
I have used Dev C++ for compilation of this programif you want to copy, copy after this line.
/* Program developed by Asad Hussain */
#include<stdio.h>
#include<iostream>
#include<conio.h>
using namespace std;
int main(){
cout<<"Hello";
getch();
}
Post a Comment