mirror of
https://github.com/tiennm99/KTLT.git
synced 2026-06-17 06:47:34 +00:00
14 lines
179 B
C++
14 lines
179 B
C++
#include <cstdio>
|
|
#include <cstdlib>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int *ptr;
|
|
ptr = 0;
|
|
printf("%p\n", ptr);
|
|
printf("%d\n", ptr);
|
|
return 0;
|
|
}
|