• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Declarations in middle of C code?!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Declarations in middle of C code?!


  • Subject: Declarations in middle of C code?!
  • From: Charles Srstka <email@hidden>
  • Date: Sun, 4 Jan 2004 16:24:29 -0600

I thought this was not supposed to work in straight C code? This most certainly did *not* work with Project Builder under 10.2, but with XCode and gcc 3.3, I can write this code:

#include <stdio.h>

int main (int argc, const char * argv[]) {
// insert code here...
printf("Hello, World!\n");

int foo = 1;
char *bar = "foobar";

printf("foo is %i, bar is %s",foo,bar);

return 0;
}

and I get the output:

Hello, World!
foo is 1, bar is foobar

I thought this was a C++ - only feature! Has this been added in gcc 3.3 or something?

Charles
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

  • Follow-Ups:
    • Re: Declarations in middle of C code?!
      • From: "M. Uli Kusterer" <email@hidden>
    • Re: Declarations in middle of C code?!
      • From: Clark Cox <email@hidden>
    • Re: Declarations in middle of C code?!
      • From: j o a r <email@hidden>
  • Prev by Date: Re: reading iTunesDB
  • Next by Date: Re: Declarations in middle of C code?!
  • Previous by thread: Re: reading iTunesDB
  • Next by thread: Re: Declarations in middle of C code?!
  • Index(es):
    • Date
    • Thread