• team leader : gyroh

  • team : jaeyoo joyoo

    en.subject.pdf

    numbers.dict.txt

  • 문제 이해

    주어진 파일에 있는 num 을 입력했을때 해당되는 name 출력
    
    ./rush02 123
    one hundred twenty three
    
    123/456/789/101112 ...
    => argv[] 
    3개씩 읽기
    
    typedef struct dict
    {
    	char *name;
    	char *num;
    	struct dict *next;
    }				dict_t;
    
    -------------------------------
    
    [**참고 링크](<https://tempdev.tistory.com/44>)1
    [참고 링크2](<https://minsoftk.tistory.com/40>)**
    
    write / open / read / close
    
    num name
    0 zero
    1 one
    • 개념정리