프로그램/C
-
C프로그램/C 2017. 9. 22. 11:47
#include //표준 입력 / 출력 라이브러리#include int main(void) // int : 함수의 반환 값으로 정수를 반환 -void : 함수의 입력으로 인수를 취하지 않는다 return 0; printf("Input the value of x: ");scanf_s("%d", &x); printf("the value of x is : %d\n", x) \n 줄바끔 int - integer %d float - float point number %f char -a single character %c 선언 된 변수에만 값을 할당 . C는 대소 문자를 구분 (A1 a1 은 다른 변수) + addition - subtraction * multiplication / division % remaind..
-
다중 루프에서 scanf_s() 연속 사용시 버퍼비우기프로그램/C 2017. 9. 21. 23:41
다중 루프에서 scanf_s(), printf() 연속 사용시 버퍼비우기 getchar() while( getchar() != '\n' ) fflush(stdin) - ? 프로젝트 - 속성 - C/C++ - SDL 검사 아니요로 설정 #define _CRT_SECURE_NO_WARNINGS #pragma warning(disable:4996) system( "pause" ) https://social.msdn.microsoft.com/Forums/vstudio/ko-KR/home?forum=visualcplusko https://www.gnu.org/software/termutils/manual/termcap-1.3/html_node/termcap_34.html
-
C 언어 실행파일 만들기프로그램/C 2017. 9. 11. 09:33
https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.MicrosoftVisualStudio2017InstallerProjects #include #include int main(void){ printf("123\n"); system("pause"); return 0; } #include 와 system("pause"); - 다른 컴퓨터에서도 실행되게 하기(?) 1)프로젝트 이름에 마우스 우클릭-속성 2)구성 속성-일반-MFC 사용에서 '정적 라이브러리에서 MFC 사용'을 선택