Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
5answers
763 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 ...
14
votes
9answers
5k views

What are the major differences between ANSI C and K&R C?

The Wikipedia article on ANSI C says: One of the aims of the ANSI C standardization process was to produce a superset of K&R C (the first published standard), incorporating many of the ...
13
votes
2answers
4k views

Can't get rid of “this decimal constant is unsigned only in ISO C90” warning

I'm using the FNV hash as a hashing algorithm on my Hash Table implementation but I'm getting the warning in the question title on this line: unsigned hash = 2166136261; I don't understand why this ...
7
votes
2answers
1k views

ANSI C (ISO C90): Can scanf read/accept an unsigned char?

Simple question: Can scanf read/accept a "small integer" into an unsigned char in ANSI C? example code un_char.c: #include <stdio.h> #include <stdlib.h> int main(void) { unsigned ...
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 ...
4
votes
1answer
386 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 ...
4
votes
6answers
3k views

Type to use to represent a byte in ANSI (C89/90) C?

Is there a standards-complaint method to represent a byte in ANSI (C89/90) C? I know that, most often, a char happens to be a byte, but my understanding is that this is not guaranteed to be the case. ...
3
votes
6answers
322 views

How can i catch a runtime error in ansi C90

I am using the library Function ConnectToTCPServer. This function times out when the host is not reachable. In that case the application crashes with the following error: "NON-FATAL RUN-TIME ERROR: ...
3
votes
3answers
2k views

mixed declarations and codes

When I compile function with "gcc -o dene -Wall -ansi -pedantic-errors dene.c" ,gcc emits no error.(can you look a line which starts with char ....,in if loop,) static void ...
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
446 views

How to allocate variable size array in C90?

I need to allocate a varibale size for SYMBOLs, typedef int SYMBOL I did in following way SYMBOL test[nc], here nc is an integer. But this gives me following warning: ISO C90 forbids ...
2
votes
3answers
268 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
1answer
151 views

Why FILE pointer need to be declared out main() in Visual Studio 2010?

I was trying to compile a simple ansi C example in Visual Studio 2010 and came across with this error compiling: Error: patchC.c(5): error C2275: 'FILE' : illegal use of this type as an ...
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?
1
vote
1answer
935 views

Getting the warning “ ISO C90 forbids variable-size array” in gcc compiler while compiling C90 code

I am compiling my C90 c code in gcc . I am getting the warningISO C90 forbids variable-size array while making the declaration like int symbols[nc]; Where nc is integer whose value is read from ...
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 ...
0
votes
2answers
89 views

Is a ISO C90 compiler needed for install gcc

for installing gcc, one of the prerequisites is ISO C90 compiler for bootstrapping gcc, as per this link http://gcc.gnu.org/install/prerequisites.html I have searched web and could not find any such ...
0
votes
2answers
78 views

Linking Math library to a C90 code using GCC

I would like to compile a simple C90 code utilizing math library: main.c: #include <stdlib.h> #include <stdio.h> #include <math.h> int main() { printf("M_PI: %f\n", M_PI); } I ...
0
votes
2answers
117 views

C90: How do I globally initialize this struct in C without C99 extensions

I was wondering what the best way to initialize this struct is with C90, while still keeping it neat. In my header file, call it test.h, I have the following struct defined: struct s_test_cfg{ ...
0
votes
2answers
204 views

How can i pass a va_list through a function in C90

I want to pass a va_list through to another function. Here is an example of what i am trying to do: void my_printf_1(char* string, ...){ va_list ap; va_start (ap, string); ...
0
votes
3answers
163 views

How can i access directories in C90 without dirent.h?

i am working in LabCVI on the basis of C90. The tanks at hand would be to find the absolute paths of "*.spec" files in the "..\data"" directory and subdirectories. I am aware that there are ...
0
votes
1answer
78 views

How can the initialisation of a struct be used as variable in a function call. ANSI-C Version

I am writing C89, C90, Ansi-C Code. One of my functions requires a struct as a parameter. I want to call the function with the initialisation of that struct rather tan creating a struct forst then ...
0
votes
6answers
754 views

The bounds on void-pointers in ANSI C89/ISO C90

Is there a way to portably determine the upper and lower bound on void-pointer values in ANSI C89/ISO C90? (I currently do not have a copy of the standard with me (I have one at home). Of course if ...