Language Study/C

[C/C++] 11 - Command Line Argument

지미닝 2022. 12. 14. 04:03

Command Line이란?

  • 컴퓨터의 텍스트 인터페이스
  • 프로그램은 커멘드를 통해서 실행을 위해 컴퓨터 operation system으로 이동한다.

Commend Line arguments

- parameters that are supplied to the program when it is invoked

argc & argv[]

int argc // argument count

  • commend line arguments의

char *argc[] // argument vector

  • The array of the pointers to all command line arguments
  • All command line arguments are inputted as character strings
  • argv[0] points to the program name