/*
Programmed by Rifki Yandhi
Program : Hello World
*/
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
char chrName[10];
cout<<"Name : ";
cin >> chrName;
cout<<"\nHello World "<<chrName<<" this is C++ Language";
getch();
}
Screenshoot Program when it was finished compile :
Free source code and program download
0 comments:
Post a Comment