080. 문자열을 정수로 변환하기 4(strtoul)080. 문자열을 정수로 변환하기 4(strtoul)

Posted at 2011. 2. 9. 04:25 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>
#include <stdlib.h>

void main( void )
{
	char *string = "11000";
	char *stop;
	int radix;
	unsigned long value;

	radix = 2;

	value = strtoul( string, &stop, radix );

	printf( "%d 개의 문자가 변환되었습니다. \n", stop - string );
	printf( "2진수 %s를 숫자로 변환하면 %u입니다. \n", string, value );
}
//