CPSC 219
While
Home Page
CPSC219
CIS (pdf)
SIS (pdf)
Schedule
Assignments
Code Samples
Midterm Info
Exam Info
Other Courses
Experimental Design
About Me
Contact Info
while.c:
main
(
)
{
int
x
=
0
;
while
(
x
>
0
)
{
printf
(
"%d
\n
"
,
x
)
;
x
=
x
-
1
;
}
}
[Get Code]