Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /******************************************************************************
- CORRIJA:
- int a, *p;
- a = 5;
- p = a;
- printf(“Conteúdo de p: %i\n”, p);
- *******************************************************************************/
- #include <stdio.h>
- int main()
- {
- int a;
- int *p;
- a = 5;
- p = &a;
- printf("Conteúdo de p: %i\n", *p);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment