> Actually, I think > > char *foo; > > is more nearly equivalent to > > char *foo = NULL; Except unassigned pointers are not guaranteed to point to anything. They might be NULL, or 0xdeadbeef, or -31415926535. -- Kernelnewbies: Help each other learn about the Linux kernel. Archive: http://mail.nl.linux.org/kernelnewbies/ FAQ: http://kernelnewbies.org/faq/