Re: Globals variable problem
Re: Globals variable problem
- Subject: Re: Globals variable problem
- From: Michael <email@hidden>
- Date: Sat, 26 Jul 2008 10:18:17 -0700
On Jul 26, 2008, at 9:38 AM, Michael wrote: The following code works as expected, with the 2 globals showing up as expected.
#include <stdio.h>
#define MAXPTRS 20
int thisisatest; <<<<<<<<<<< seen in the globals browser as expected, check box available, once checked, seen under "globals" in the debugger char *lineptrs[MAXPTRS]; <<<<<<<<<<<< ditto.
int main (int argc, const char * argv[]) { // insert code here... printf("Hello, World!\n"); return 0; }
Anyone make any sense of this?
After playing around a while, it seems that if "lineptrs" is declared BEFORE the include file is added to the project, lineptrs is visible in the globals browser as expected. Not sure what this means.
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden