#include int main() { int* ptr; *ptr = 5; printf("%d", &ptr); return 0; }
This was asked in a coding interview, what