Development Visual C++ .NET

#include "stdafx.h"
using namespace System;
#include 
int main()
{
   String^ str = "managed string";
   // The string is automatically converted to a
   // char array for printf_s
   printf_s("%s", str );
}