전체 글(80)
-
4장 . I/O
man7.org/linux/man-pages/man2/open.2.html open(2) - Linux manual page open(2) — Linux manual page OPEN(2) Linux Programmer's Manual OPEN(2) NAME top open, openat, creat - open and possibly create a file SYNOPSIS top #include #include #include int open(const char *pathname, int flags); int open(const man7.org 1 2 3 4 5 6 7 #include #include #include int open(const char *pathname, int flags); // 성..
2021.02.22 -
vim 키
vim.rtorr.com/lang/ko
2021.02.21 -
Qt5 시작하기
(1) File | New File or Project | Application | Qt Widgets Application 선택 (2) cpp 파일명에 대문자를 사용할 수 있도록 Tools | Options | C++ | File Naming 에서 Lower case file names 를 체크 해제한다. (3) 만들고자하는 프로젝트의 이름과 저장 위치를 지정한다. (4) MainWindow.h / MainWindow.cpp contain the default GUI generated by wizard (5) .pro file is Qt's configuration project file. (즉 환경 설정을 할 수 있는 파일이다.)
2021.02.11 -
vim 에디터 설정 [~/.vimrc]
color-schemes https://www.slant.co/topics/480/~best-vim-color-schemes Slant - 26 Best VIM color-schemes as of 2021 Gruvbox, Molokai, and Dracula are probably your best bets out of the 26 options considered. "Very easy on the eyes" is the primary reason people pick Gruvbox over the competition. This page is powered by a knowledgeable community that helps you make an inf www.slant.co github.com/to..
2021.02.10 -
Compiling your first Qt Program in Ubuntu
https://vitux.com/compiling-your-first-qt-program-in-ubuntu/ Compiling your first Qt Program in Ubuntu Qt is a free, open source, and cross-platform application development framework for desktop, embedded and mobile. It supports various platforms such as Linux, OS X, Windows, VxWorks, QNX, Android, iOS, BlackBerry, Sailfish OS, and others. More than a progr vitux.com
2021.01.29 -
조정자
std::ios_base::fmtflags (형식화 플래그) fmtflags ios::setf (flag); // 플래그를 설정 fmtflags ios::unsetf (flag); // 플래그를 해제 fmtField ios::setf (addingField, field); // 지정할 필드를 설정 fmtField ios::unsetf (field); // 지정할 필드를 해제 조정자 정의 1 2 3 4 5 6 7 8 9 10 11 12 istream& name(istream& is) { // action return is; } ostream& name(ostream& os) { // action return os; } cs
2021.01.25