atoi

[機能]

  文字列を整数値へ変換します

[形式]
#include <stdlib.h>

int atoi(const char *str)
	str : 変換される文字列		
[使用例]

  1. 文字列を倍精度浮動小数点数,整数,及び,long 型整数に変換します
    #include <stdio.h>
    #include <stdlib.h>
    
    int main()
    {
    	char *s;
    	double x;
    	int i;
    	long l;
    
    	s = "-2309.12e-15";            /* doubleへの変換 */
    	x = atof(s);
    	printf("文字列=%s  数値(double)=%e\n", s, x);
    
    	s = "6.775";                   /* doubleへの変換 */
    	x = atof(s);
    	printf("文字列=%s  数値(double)=%f\n", s, x);
    
    	s = "-12345";                  /* intへの変換 */
    	i = atoi(s);
    	printf("文字列=%s  数値(int)=%d\n", s, i);
    
    	s = "1234567890";              /* long intへの変換 */
    	l = atol(s);
    	printf("文字列=%s  数値(long)=%ld\n", s, l);
    
    	return 0;
    }
    			
    (出力)
    文字列=-2309.12e-15  数値(double)=-2.309120e-12
    文字列=6.775  数値(double)=6.775000
    文字列=-12345  数値(int)=-12345
    文字列=1234567890  数値(long)=1234567890			
[参照]

atof, atol, strtod, strtol, strtoul, ecvt, fcvt, gcvt

菅沼ホーム 本文目次 演習問題解答例 付録目次 索引