본문 바로가기

HTML/CSS

C++ 소스코드를 HTML에서 알아보기 쉽게 하이라이트 주기.



http://www.bedaux.net/cpp2html/

좋은싸이트 입니다.

적절하게 박스에 넣은 후, Convert를 누루면..



ex)

// automtichider.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <windows.h>

int main(int argc, char* argv[])
{
	int dummys;
	HWND copyies;
	copyies = FindWindow(NULL,"복사 중...");


	if(copyies==0) {
		printf("복사하는게 없거든...");
		scanf("창을 닫으세요. \n", dummys);
		return 0;
	}

	ShowWindow( copyies,0);

	printf("ㅇㅋ 없앰.");
	scanf("창을 닫으세요. \n", dummys);
	return 0;
}