CPSC 219
Address
Home Page
CPSC219
CIS (pdf)
SIS (pdf)
Schedule
Assignments
Code Samples
Midterm Info
Exam Info
Other Courses
Experimental Design
About Me
Contact Info
address.c:
main
(
)
{
int
x
=
100
;
printf
(
"The value of x is %d
\n
"
,
x
)
;
printf
(
"The address of x is %u
\n
"
,
&
x
)
;
}
[Get Code]