Visual C++ .NET/Language Basics/nullptl
Версия от 15:31, 26 мая 2010; (обсуждение)
If it is a nullptl
#include "stdafx.h"
using namespace System;
int main()
{
String^ str;
while ((str = Console::ReadLine()) != nullptr)
{
Console::WriteLine( str->ToUpper() );
}
}