gpt4 book ai didi

c - 原型(prototype)是正确的,但输出中显示垃圾值

转载 作者:太空宇宙 更新时间:2023-11-04 06:15:27 25 4
gpt4 key购买 nike

<分区>

我提到的程序原型(prototype) (void example();) 是正确的,但编译器在输出中给出了垃圾值而不是正确值。
应该添加或删除哪些代码?

这是我的代码:

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

void example()
{
static int x = 10;
x=x+10;
printf("\n%d",&x);
}

int main()
{
int i;
for(i=0;i<=3;i++)
{
example();
}
getch();
return 0;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com