Re: Declarations in middle of C code?!
Re: Declarations in middle of C code?!
- Subject: Re: Declarations in middle of C code?!
- From: j o a r <email@hidden>
- Date: Sun, 4 Jan 2004 23:45:03 +0100
It's part of C99, and has been possible since we moved to GCC 3.x,
about 1.5 years ago (IIRC). It was most certainly possible to do this
on PB and Mac OS X 10.2.
j o a r
On 2004-01-04, at 23.24, Charles Srstka wrote:
>
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?
[demime 0.98b removed an attachment of type application/pkcs7-signature which had a name of smime.p7s]
_______________________________________________
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.