What is the output of this C code?
#include void main() { int x = 0; int *ptr = &x; printf("%d\n", *ptr); }
Answer: