프로그래밍언어/C & CPP
아규먼트
Isaac87
2014. 7. 14. 13:38
#include <stdio.h> int main(int argc, char* argv[ ]) { int i=0; printf("문자열의 수 : %d \n", argc); for(i=0; i<argc; i++) { printf("%d번째 문자열 : %s \n", i, argv[i]); } return 0; } |