Objective C -std=c99 usage - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:09:15Z http://stackoverflow.com/feeds/question/732576 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/732576/objective-c-stdc99-usage 0 Objective C -std=c99 usage Andy White 2009-04-09T02:31:05Z 2009-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#732691 2 Answer by Derek Ledbetter for Objective C -std=c99 usage Derek Ledbetter 2009-04-09T03:40:59Z 2009-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#732734 3 Answer by rpetrich for Objective C -std=c99 usage rpetrich 2009-04-09T04:00:15Z 2009-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>