|
기본윈도우 소스를 보니까
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
//---------------------------------------------------------------------------
이러고 나오는데 무슨말인지 전혀 ㅠ.ㅠ 몰라요
여기에 C언어를 써서
#include<stdio.h>
int main(){
printf("하이");
return 0;
}
이걸 써서 글자를 집어넣으려면 이 소스코드를 어디다가 집어넣으면 되나요~
그리고요 C++ 빌더 책 좋은거 하나 추천해주세요~
|