1 Star 1 Fork 2

劉亜崇/C和C++游戏趣味编程

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
10-8-4.cpp 172 Bytes
Copy Edit Raw Blame History
劉亜崇 authored 2022-04-04 10:40 +08:00 . 初始化
#include <conio.h>
#include <stdio.h>
void fun(int *a)
{
*a = *a + 1;
}
int main()
{
int x = 1;
printf("%d\n",x);
fun(&x);
printf("%d\n",x);
_getch();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/liuyachong/Interesting-programming-of-C-and-Cpp-Games.git
git@gitee.com:liuyachong/Interesting-programming-of-C-and-Cpp-Games.git
liuyachong
Interesting-programming-of-C-and-Cpp-Games
C和C++游戏趣味编程
main

Search