Develop				
			
										2003.04.23 10:54				
				[c] 신기한 atoi함수(www.game79.net)
																																			조회 수 8450										댓글 0									
				
							#include <stdio.h>
int myatoi(char *str){
        int result=0;
        int i=0;
        while( str[i] ){
                result = result*10 + str[i] - '0';
                i++;
        }
        return  result;
}
void main(){
        char num[10]="1234";
        printf("%d",myatoi(num));
}
- 
		
				
		Read More
[c] 문자열 처리 관련 함수들 설명
 - 
		
				
		Read More
[linux] 프로세스 관련 시스템콜
 - 
		
				
		Read More
[c] 시간 계산 하는 프로그램 소스코드
 - 
		
				
		Read More
[php] 마시마로 캐릭터 방명록
 - 
		
				
		Read More
[c] OpenGL 색 입방체의 회전(입체)
 - 
		
				
		Read More
[c] 신기한 atoi함수(www.game79.net)
 - 
		
				
		Read More
[c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java)
 - 
		
				
		Read More
[js] 점점 커지는 새창..
 - 
		
				
		Read More
[c] OpenGL 마우스 이벤트
 - 
		
				
		Read More
[js] 사라지는 브라우저
 - 
		
				
		Read More
[js] 이벤트 핸들러(Event Handlers)
 - 
		
				
		Read More
[js] 키보드 아스키코드(ASCII) 코드보기