CPSC 219
Error
Home Page
CPSC219
CIS (pdf)
SIS (pdf)
Schedule
Assignments
Code Samples
Midterm Info
Exam Info
Other Courses
Experimental Design
About Me
Contact Info
error.c:
int
main
(
)
{
int
a
[
4
]
=
{
1
,
2
,
3
,
4
}
;
int
i
=
0
;
while
(
i
<
4
)
{
i
=
i
+
1
;
printf
(
"%d
\n
"
,
a
[
i
]
)
;
}
}
[Get Code]