导航
实时编程协作教学平台
请单击屏幕顶部的“允许”,以便我们可以访问您的网络摄像机和麦克风进行通话。
无法访问网络摄像机和麦克风。确保在HTTP服务器上运行此演示,并在浏览器请求权限时单击“允许”。
再试
您的id号:
...
当前正在呼叫
...
int increment(int x) { x = x + 1; return x; } int main() { /* call function */ int y = increment(1); /* print the value of y */ printf("The value of y is %d", y); /* return */ return 0; }