Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n = 544;
- int *pn = &n; // pointer (указатель)
- ////////////////////////////////////////////////////
- int main() //
- {
- printf(" n = %d \n", n);
- printf("Address = &n = %d \n", &n);
- printf("---------------\n");
- printf(" pn = %d \n", pn);
- printf("*pn = %d \n", *pn);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement