Is there any way of determining whether a variable has been initialized or not? For example, if something is declared like this:

  int x = void;

can I check if it's void before I use it, say, in a function it's been passed to?

Reply via email to