Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. wytrzeszcz@nfs:~$ nano test.c
  2. wytrzeszcz@nfs:~$ gcc test.c
  3. wytrzeszcz@nfs:~$ ./a.out
  4. a[10]- 12
  5. *b 4
  6. wytrzeszcz@nfs:~$ cat test.c
  7. #include <stdio.h>
  8.  
  9. int main()
  10. {
  11. char a[12];
  12. char *b;
  13. printf ("a[10]- %d \n *b %d\n",sizeof(a),sizeof(b));
  14. return 0;
  15. }
  16. wytrzeszcz@nfs:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement