코딩Coding/C++__C언어
-
C++_Cmake-개념 이해 (기본 구조)-Keunjun코딩Coding/C++__C언어 2020. 9. 4. 20:46
https://keunjun.blog/2018/10/07/cmake-03-%EA%B0%9C%EB%85%90-%EC%9D%B4%ED%95%B4-%EA%B8%B0%EB%B3%B8-%EA%B5%AC%EC%A1%B0/[CMake] 03. 개념 이해 (기본 구조) - Keunjun아래 내용은 Ken Martin과 Bill Hoffman의 Mastering CMake을 바탕으로 정리한 것이다. Make를 사용하다보면 target, generators, commands와 같은 다양한 개념(concept)에 대해서 접하게 될 것이다. 물론, 몰라도 CMake��keunjun.blog
-
How to CMake Good_C++코딩Coding/C++__C언어 2020. 9. 4. 01:14
https://www.youtube.com/watch?v=wP4cwAtU-g8 https://irem.tistory.com/19 VSCode C++ 개발환경 세팅 (이 글은 작성중입니다.) ※ 본문중에 Ctrl(컨트롤)키는 macOS에서 Cmd(커맨드)키로 대체하여 사용해야할 수 있습니다. 새로운 시작, 새로운 환경의 선택 이번에 새롭게 시작하는 개인 학습을 겸하� irem.tistory.com https://goodgodgd.github.io/ian-flow/archivers/vscode-tutorial Visual Studio Code setup for C++ « IanFlow Visual Studio Code 개발환경 세팅 (C++) 개인적으로 Visual Studio 싫어하기 때문에 그동안 크로스..
-
C언어 Format Specifiers, Place holder(형식지정자, 서식지정자)코딩Coding/C++__C언어 2020. 9. 2. 13:18
https://sgcomputer.tistory.com/32C언어 format specifiers, place holder(형식지정자, 서식지정자)형식 지정자란? place holder(빠져있는 것을 대신하는 텍스트나 기호의 일부) 역할을 하며 format specifiers(형식지정자, 서식지정자)라고도 한다. %c 문자 %s 문자열 %d 10진법 정수 %f 실수형(소수점 이하�sgcomputer.tistory.com
-
What does "+=" mean in C programming?코딩Coding/C++__C언어 2020. 8. 26. 00:44
https://www.quora.com/What-does-+-mean-in-C-programming What does "+=" mean in C programming? Answer (1 of 15): The += operator in C is one of the language’s compound assignment operators. It is essentially a shorthand notation for incrementing the variable on the left by an arbitrary value on the right. The following two lines of C code are iden www.quora.com
-
C프로그래밍 기초- 입력 함수, 서식 문자는 왜 사용할까?Ex)%s %d코딩Coding/C++__C언어 2020. 8. 10. 01:27
https://m.blog.naver.com/PostView.nhn?blogId=peisir&logNo=221882834009&proxyReferer=https:%2F%2Fm.search.daum.net%2Fsearch%3FDA%3DYZR%26DN%3DIPDA%26enc_all%3Dutf8%26f%3Diphoneapp%26nil_app%3Ddaumapp%26nil_profile%3Dbtn%26q%3Dc%2520%25EC%2584%259C%25EC%258B%259D%25EB%25AC%25B8%25EC%259E%2590%2520%25EC%25B6%259C%25EB%25A0%25A5%25EB%258C%2580%25EC%2583%2581%2520%25EC%25B6%259C%25EB%25A0%25A5%25ED%2..