不想起名字a 发表于 2021-1-29 13:55:20

感觉好神奇 但是不知道为什么 求助大神

这是输入的内容:


#include<stdio.h>
int main()
{
        int i=1;
        printf("##%*d\n",i);
        i++;
        printf("##%*d\n",i);
        i=3;
        printf("##%*d\n",i);
        return 0;
}
以下为运行的结果:
##4198752
##4198752
##4198752
Press any key to continue
请问为什么会出现这样的结果啊?
是因为我用的是VC6吗?

昨非 发表于 2021-1-29 14:07:35

看看这个
https://zhidao.baidu.com/question/446658936.html
https://www.runoob.com/cprogramming/c-function-printf.html

不想起名字a 发表于 2021-1-29 14:08:52

昨非 发表于 2021-1-29 14:07
看看这个
https://zhidao.baidu.com/question/446658936.html
https://www.runoob.com/cprogramming/c-fu ...

多谢
页: [1]
查看完整版本: 感觉好神奇 但是不知道为什么 求助大神