我只是想知道是否可以在函数中创建类似int i的元素,在函数代码中使用它然后从外部返回它。 代码就像这样:
int testFunc(int i){
i++;
}
return i;// <-- can I do this?
如果这不可能,那么是否有人知道如何从函数返回值?感谢任何帮助,谢谢。
答案 0 :(得分:2)
我会将变量设为全局
int i;
void testFunc(){
i++;
}
int anotherFunc(){
return i;
}