This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10213903403
/
os_kernel_lab
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
《操作系统》的实验代码。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
337
Commits
2
Branches
52 MiB
Tree:
cd4dff43d2
main
x86-32
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'cd4dff43d2'
${ noResults }
os_kernel_lab
/
related_info
/
lab4
/
some-exercises
/
call2.c
11 lines
94 B
Raw
Normal View
History
add lab4 spoc exercises
8 years ago
void
func2
(
int
a
,
int
b
)
{
a
+
+
;
b
+
=
2
;
}
int
main
(
)
{
func2
(
1111
,
2222
)
;
return
0
;
}