Главная > C++ > Hello World на С++

Hello World на С++

Сегодня написал свой первый “хеллоуворлд” на С++ в новой Microsoft Visual Studio 2010

// Ext_01.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

int _tmain(int argc, _TCHAR* argv[])
{
std::cout <<"Hello World!\n";
return 0;
}

Кому интересно, вот как выглядит новая VS под Windows 7

VS(Картинка кликабельна)

Буду и дальше публиковать вести с фронтов. Напомню, что я приступил к изучению С++

C++ , ,

blog comments powered by Disqus