9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] C question - completely OT, but I'd like to know the answer
@ 2011-09-08  9:41 Winston Kodogo
  2011-09-08  9:57 ` dexen deVries
  2011-09-08 10:44 ` dexen deVries
  0 siblings, 2 replies; 3+ messages in thread
From: Winston Kodogo @ 2011-09-08  9:41 UTC (permalink / raw)
  To: 9fans

Sorry to bother the list, but I thought I might get a sensible answer
here from the few remaining people in the world who actually
understand C.

The following bit of code seems to be more or less syntactically OK:

switch (nurdge)
{
    int nigel = 1;
    case 0:
		if(nigel == 1)
			printf("nigel is one.\n");
		else
			printf("nigel is not one.\n");

	default:
		printf("The value of nigel is %d", nigel);
}

Something close to this compiles under my C compiler, and yet the
variable "nigel" is not initialised, and the test inside the first
case test is pretty much certain to print "nigel is not one". Although
my C++ compiler does complain about an uninitialised variable.

I'm puzzled as to why the line "int nigel = 1;" is syntactically OK,
and although it seems to have declared the variable "nigel" - else the
following code would fail to compile - has failed to give it the
initial value of 1, as requested.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-08 10:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-08  9:41 [9fans] C question - completely OT, but I'd like to know the answer Winston Kodogo
2011-09-08  9:57 ` dexen deVries
2011-09-08 10:44 ` dexen deVries

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).