Tagged Questions

5
votes
1answer
1k views

Recommended Clang command line options

The Manual for Clang seems to be work in progress, so could you help me formulate the definitive command line options for compiling ANSI-C (AKA C89, C90) with maximum strictness and relevant/helpful ...
2
votes
0answers
200 views

Can I obtain the C89/C90 standard from somewhere for free? [closed]

While K&R is a great introduction into the language, it does not always constitute adequate reference material. Unfortunately, ISO/ANSI charges fees for its documents. Nevertheless, does anybody ...
2
votes
4answers
1k views

Are prototypes required for all functions in C89, C90 or C99?

To be truly standards-compliant, must all functions in C (except for main) have a prototype, even if they are only used after their definition in the same translation unit?
1
vote
5answers
293 views

How to find my current compiler's standard, like if it is C90, etc

I'm working on a Linux machine. Is there any system command to find the standard followed by the C compiler I'm using?