Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int arr[123];
- //////////////////////////////////////////////////////////////////////////////
- int main() //
- {
- int a, n, b, c;
- int *pn = (int*)malloc(4);
- *pn = 85;
- printf(" pn = %d \n", pn);
- printf("*pn = %d \n", *pn);
- int &nEfim = *pn;
- printf(" nEfim = %d \n", nEfim);
- printf("&nEfim = %d \n", &nEfim);
- free(pn);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement