티스토리 뷰
비주얼 스튜디오 빈 프로젝트와 콘솔 응용프로그램 차이?
Win32 application prepares you the basic issues of an application: resources (like icons, dialog name, dialog menu …), existing definitions (prepared header file), entry point (WinMain ) ,other WndProc function and so forth.
Empty Project do not do the prepare job of these coding source. You can see the link I give you.
Elegentin Xie
MSDN Community Support
여기서 준 링크 두개:
https://msdn.microsoft.com/en-us/library/2eezscy8.aspx
https://msdn.microsoft.com/en-us/library/s2zy4kwk.aspx
번역기 열기
source: https://social.msdn.microsoft.com/Forums/vstudio/en-US/6ce711aa-6fc3-4437-bee9-7e8a6ff9204d/whats-the-difference-between-an-empty-project-and-win32-application?forum=vcgeneral
A "Window's Console Application" program has stuff added to your project to make it run smoother with the Window's command prompt. However, even if you create an "Empty Project", the compiled version will not run on another OS, by default. You will have to recompile for each OS you want to work with
번역기 열기
https://stackoverflow.com/questions/47384537/difference-between-windows-console-application-and-empty-project-in-vs-c
1. An empty project contains no application framework at all - it's more for developing a support source than anything else. A Console Application contains all the framework & boilerplate for a Console (DOS Box) application... not that there's much, but at least you can snap out a "Hello, World" in it.
2. Creating an empty project is just for managing/creating multiple applications within a project. Regardless, you can still create standalone console applications without creating a project.
번역기 열기
https://www.quora.com/What-is-the-difference-between-empty-project-and-console-application-in-an-IDE
'C' 카테고리의 다른 글
C언어 두개의 문자열을 입력받아, 문자열이 같은지 다른지를 판별 (0) | 2018.04.05 |
---|---|
C언어 파일 입출력[더블 스페이싱(double spacing)] 텍스트파일에 있는걸 줄바꿈 하여 다른 텍스트 파일에 저장 (0) | 2018.04.05 |
비주얼 스튜디오 빈 프로젝트와 콘솔 응용프로그램 차이 (0) | 2018.03.29 |
C언어 팰린드롬(Palindrome) 회문 확인 예제 (0) | 2018.03.22 |
C언어 소수 판별 예제 (0) | 2018.03.15 |
유클리드 호제법(최대 공약수) (0) | 2016.11.29 |
- Total
- 40,896
- Today
- 13
- Yesterday
- 103