VCL ÀÇ String ó·³ ½áº¸Àð..
µî·ÏÀÚ : À¯±¤Èñ, 02-05-13 04:38:50
// test_app1.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include
#include
using namespace std;
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
string a;
a = "ÇÏÇÏÇÏ";
a += "È÷È÷È÷";
printf(a.c_str());
return 0;
c_str()
}
|
|