int main(void) { int a=5; fun(); printf("%d",a); return 0; }
我需要编写函数fun(),以便printf将打印15.我不能改变fun()的原型,即它不能传递任何东西,我不能修改main()函数中的任何东西
main()
c
c ×1