This website requires JavaScript.
Explore
Help
Register
Sign In
Virtualization
/
meson
mirror of
https://gitlab.com/qemu-project/meson.git
Watch
1
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
add502c648
meson
/
test cases
/
common
/
61 foreach
/
prog2.c
7 lines
86 B
C
Raw
Normal View
History
Unescape
Escape
Implement a foreach loop construct. Closes #17.
2014-11-06 02:38:35 +08:00
#
include
<stdio.h>
Make all C main functions without arguments have "void" in arg list.
2019-11-17 22:09:30 +08:00
int
main
(
void
)
{
Implement a foreach loop construct. Closes #17.
2014-11-06 02:38:35 +08:00
printf
(
"
This is test #2.
\n
"
)
;
return
0
;
}