zoukankan      html  css  js  c++  java
  • itoa : Convert integer to string

     
     
    function
     
    Required header : <stdlib.h>

    itoa

    char *  itoa ( int value, char * str, int base );
    Convert integer to string (non-standard function)

    Converts an integer value to a null-terminated string using the specified base and stores the result in the array given by str parameter.

    If base is 10 and value is negative, the resulting string is preceded with a minus sign (-). With any other basevalueis always considered unsigned.

    str should be an array long enough to contain any possible value: (sizeof(int)*8+1) for radix=2, i.e. 17 bytes in 16-bits platforms and 33 in 32-bits platforms.

    Parameters

    value
    Value to be converted to a string.
    str
    Array in memory where to store the resulting null-terminated string.
    base
    Numerical base used to represent the value as a string, between 2 and 36, where 10 means decimal base, 16 hexadecimal, 8 octal, and 2 binary.

    Return Value

    A pointer to the resulting null-terminated string, same as parameter str.

    Portability

    This function is not defined in ANSI-C and is not part of C++, but is supported by some compilers.

    A standard-compliant alternative for some cases may be sprintf:

    • sprintf(str,"%d",value) converts to decimal base.
    • sprintf(str,"%x",value) converts to hexadecimal base.
    • sprintf(str,"%o",value) converts to octal base.

    Example

    /* itoa example */
    #include <stdio.h>
    #include <stdlib.h>
    
    int main ()
    {
      int i;
      char buffer [33];
      printf ("Enter a number: ");
      scanf ("%d",&i);
      itoa (i,buffer,10);
      printf ("decimal: %s
    ",buffer);
      itoa (i,buffer,16);
      printf ("hexadecimal: %s
    ",buffer);
      itoa (i,buffer,2);
      printf ("binary: %s
    ",buffer);
      return 0;
    }
    

      

     

    Output:

    Enter a number: 1750
    decimal: 1750
    hexadecimal: 6d6
    binary: 11011010110
    
  • 相关阅读:
    PHP获取汉字拼音首字母
    记录,待总结5
    HDU2833 WuKong Floyd
    搜索
    记录,待总结4
    HDU3350 #define is unsafe 栈的应用
    指针与引用的混合使用总结
    多源最短路径 Floyd
    引用总结
    函数返回值总结
  • 原文地址:https://www.cnblogs.com/cindy-hu-23/p/3547959.html
Copyright © 2011-2022 走看看