#include <stdio.h> int main() { int *ptr; /* Ptr is a wild pointer, as it is not initialized Yet */ printf("%d", *ptr); return 0; }