sprintf sscanf

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int d = 102523;
    int a;
    char s[10];
    sprintf(s, "%d", d);    //整型d中的数输出到字符数组s中
//    for (int i = 0; i < strlen(s); i ++ )
//        printf("%c", s[i]);
    sscanf(s, "%d", &a);    //字符数组s中的字符写入整型a中
    printf("%d", a);
    return 0;
}

posted @ 2023-03-01 22:47  DuJunlong  阅读(5)  评论(0编辑  收藏  举报  来源