서버개발자/C언어
C 언어
하얀소닉
2014. 4. 2. 11:23
1. atoi('문자열') => 숫자
ex) "1234" => 1234
2. itoq(숫자) => 문자
ex) 1234 => '1234'
int i;
i=1234;
string s;
3.strcpy
strlen("문자");
4. strcmp(문자1,문자2)
ex)("AB","A") => O or 1.2