This website works better with JavaScript.
Home
Explore
Help
Sign In
wangxinyu2
/
group_practice
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
添加减函数
tags/v1.0
JIU JIALIN
6 days ago
parent
39d14f2e42
commit
1ec172c390
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
JJL.c
+ 5
- 0
JJL.c
View File
@@ -5,6 +5,11 @@ int add(int a,int b)
return a + b;
}
int sub(int a,int b)
{
return a-b;
}
int main()
{
printf("hello world!");
Write
Preview
Loading…
Cancel
Save