gpt4 book ai didi

c - 如何从被调用函数更改调用函数中的变量?

转载 作者:太空狗 更新时间:2023-10-29 17:04:56 25 4
gpt4 key购买 nike

<分区>

应该如何修改(及其调用)try() 函数以从下面的程序中获得 11 的输出?

#include <stdio.h>

/* declare try() here */

int main(void)
{
int x = 10;
try(); /* Call can change */
printf("%d\n", x);
return 0;
}

void try() /* Signature can change */
{
/* how to change x here?? */
}

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