Objective C -std=c99 usage - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T09:09:15Zhttp://stackoverflow.com/feeds/question/732576http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/732576/objective-c-stdc99-usage0Objective C -std=c99 usageAndy White2009-04-09T02:31:05Z2009-04-09T04:00:15Z
<p>Is there any reason why you shouldn't use the "-std=c99" flag for compiling Objective-C programs on Mac? The one feature in C99 that I really like is the ability to declare variables anywhere in code, rather than just at the top of methods, but does this flag causes any problems or create incompatibilities for iPhone or Cocoa apps?</p>
http://stackoverflow.com/questions/732576/objective-c-stdc99-usage/732691#7326912Answer by Derek Ledbetter for Objective C -std=c99 usageDerek Ledbetter2009-04-09T03:40:59Z2009-04-09T03:40:59Z<p>I've tried it myself on a small iPhone app, and it works. I've seen no problems with it.</p>
http://stackoverflow.com/questions/732576/objective-c-stdc99-usage/732734#7327343Answer by rpetrich for Objective C -std=c99 usagerpetrich2009-04-09T04:00:15Z2009-04-09T04:00:15Z<p>Compiled C99 binary code is binary-compatible with older C variants. The only downside is if you have to share code with other projects that aren't C99 (or GNU99).</p>
<p>The same applies to Objective-C</p>