If it is a nullptl : nullptl « Language Basics « Visual C++ .NET






If it is a nullptl

 
#include "stdafx.h"
using namespace System;

int main()
{
   String^ str;
   while ((str = Console::ReadLine()) != nullptr)
   {
      Console::WriteLine( str->ToUpper() );
   }
}

   
  








Related examples in the same category