printf("%d", *b);
this prints 0 why?...i mean the pointer size is 8byte
The size of pointer doesn't necessarily equal the size of the memory it points to
you are printing the first byte of the int which is 0
^
Обсуждают сегодня