생성

    [Spring Boot] init project

    1. init project 1) 도움말을 보는 것은 spring help [command]이다. ex) init manual$ spring help init spring init - Initialize a new project using Spring Initializr (start.spring.io) usage: spring init [options] [location] Option Description ------ ----------- -a, --artifactId Project coordinates; infer archive name (for example 'test') -b, --boot-version Spring Boot version (for example '1.2.0.RELEASE') --b..

    2차배열 동적 할당, 교환하기 등.

    아래 블로그를 참조하였습니다.http://gshan85.tistory.com/34 요약 : 2차 배열로 생성하고, 1차 배열을 덮어 씌우는데, 그 1차배열은 할당, 삭제가 가능하다. #include #include using namespace std; void swap( char **tmp ) { for( int i=0;i

    [c++/c] linux환경, 파일, 폴더 생성 소스 포스팅

    1.그냥그냥 모아놓으면 어차피 내 소스니깐 내가 쓰기 편해서 지속적으로 올려 놓을 생각이다. 2. 키워드 : 파일, 폴더, 생성, 소스, 코드, file, fopen 3. #include #include #include #include int main() { //********************************* // create directory //********************************* struct stat st = {0}; if( stat("com", &st) == -1 ) { mkdir("com", 0700); } else printf("fail\n"); //********************************* // create file //**********..