Tagged Questions
23
votes
5answers
760 views
Why was mixing declarations and code forbidden up until C99?
I have recently become a teaching assistant for a university course which primarily teaches C. The course standardized on C90, mostly due to widespread compiler support. One of the very confusing ...
19
votes
8answers
2k views
Is “The C Programming Language” (book) current?
Is the version of C taught by this rather old, but frequently mentioned, book the same as that which is being used in the real world today? If not, could anyone list or point to a list of the ...
4
votes
1answer
383 views
Compile for freestanding environment with GCC
The code I'm working on is supposed to be possible to build for both hosted and freestanding environments, providing private implementations for some stdlib functions for the latter case.
Can I ...
2
votes
3answers
267 views
C90 - C99: register struct
is "register struct" legal? In terms of standards and (separated from standards) in Gcc?
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
291 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?
1
vote
3answers
2k views
How to use make and compile as C99?
I'm trying to compile a linux kernel module using a Makefile:
obj-m += main.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname ...