



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: Introduction to C Programming for Engineers; Subject: Computer Systems Engineering ; University: University of Alaska - Anchorage; Term: Fall 2008;
Typology: Study notes
1 / 7
This page cannot be seen from the preview
Don't miss anything!




void change_value (int *my_ptr)
*my_ptr
} void change_value (int val)
val
} void main()
int value
int *value_ptr; value_ptr
&value; printf (“%d”, value);
what is printed? change_value(value); printf (“%d”, value);
what is printed? change_value(value_ptr); printf (“%d”, value);
what is printed? change_value(&value); printf (“%d”, value);
what is printed? }