Γράφοντας "Hello World" με C++
#include "stdafx.h"
#include "conio.h"
using namespace std;
void main(){
cout << "Hello World" << endl;
getch();
}
Original Article : http://developerpages.gr/index.php/el/desktop-development-2/c-languages/9-c-hello-world-program1
#include "stdafx.h"
#include "conio.h"
using namespace std;
void main(){
cout << "Hello World" << endl;
getch();
}
Original Article : http://developerpages.gr/index.php/el/desktop-development-2/c-languages/9-c-hello-world-program1
No comments:
Post a Comment