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
add_hello_world
tags/v1.0
wangxinyu
6 days ago
parent
0d1eaddb30
commit
26cc92d5d7
1 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
JJL.c
+ 12
- 0
JJL.c
View File
@@ -0,0 +1,12 @@
#include "stdio.h"
int add(int a,int b)
{
return a + b;
}
int main()
{
printf("hello world!");
return 0;
}
Write
Preview
Loading…
Cancel
Save