Tagged Questions
This tag is for questions regarding the International Standard ISO 9899:1989, aka "C89" or "ANSI C", with amendmends and technical corrigenda, and for questions about code written in C89 (as opposed to K&R C, C99 or later C Standard revisions).
52
votes
3answers
1k views
Is the behavior of subtracting two NULL pointers defined
Is the difference of two non-void pointer variables defined (per C99 and/or C++98) if they are both NULL valued?
For instance, say I have a buffer structure that looks like this:
struct buf {
char ...
44
votes
6answers
2k views
Is the “struct hack” technically undefined behavior?
What I am asking about is the well known "last member of a struct has variable length" trick. It goes something like this:
struct T {
int len;
char s[1];
};
struct T *p = ...
42
votes
27answers
5k views
Is there any reason to use C instead of C++ for embedded development?
Question
I have two compilers on my hardware C++ and C89
I'm thinking about using C++ with classes but without polymorphism (to avoid vtables).
The main reasons I’d like to use C++ are:
I prefer ...
20
votes
10answers
1k views
Why didn't C have a boolean data type prior to C99?
I realise you can just #define some integers, but why didn't C have a dedicated boolean data type before C99?
It's such a common occurence in programming and logic, I don't understand the absense of ...
15
votes
5answers
9k views
Variable declaration placement in C
I long thought that in C, all variables had to be declared at the beginning of the function. I know that in C99, the rules are the same as in C++, but what are the variable declaration placement rules ...
11
votes
8answers
460 views
Which version of C is more appropriate for students to learn- C89/90 or C99?
I'm looking into learning C basics and syntax before beginning Systems Programming next month. When doing some reading, I came across the C89/99 standards. According to Wikipedia,
C99 ...
10
votes
5answers
419 views
What parts of C are most portable?
I recently read an interview with Lua co-creators Luiz H. de Figueredo and Roberto Ierusalimschy, where they discussed the design, and implementation of Lua. It was very intriguing to say the least. ...
10
votes
7answers
1k views
What C99 features are considered harmful or unsupported
I usually write C code in C89, now some features of C99 (like intxx_t or __VA_ARGS__ or snprintf) are very useful, and can be even vital.
Before I more my requirements from C89 to C99 I wanted to ...
8
votes
1answer
245 views
Does either ANSI C or ISO C specify what -5 % 10 should be?
I seem to remember that ANSI C didn't specify what value should be returned when either operand of a modulo operator is negative (just that it should be consistent). Did it get specified later, or ...
7
votes
2answers
141 views
C Integral Overflow?
have a peek at this. The compiler is complaining that I have an integer overflow, but when I look at the C89 standard's rules for integral promotion along with the values in that expression, it seems ...
7
votes
2answers
1k views
Recursive declaration of function pointer in C
I'd like to declare a function that returns a pointer to a function of the same type.
I would like to use it to implement state machines like the one below:
typedef event_handler_t ...
7
votes
3answers
619 views
Does floor() return something that's exactly representable?
In C89, floor() returns a double. Is the following guaranteed to work?
double d = floor(3.0 + 0.5);
int x = (int) d;
assert(x == 3);
My concern is that the result of floor might not be exactly ...
6
votes
3answers
428 views
How to enforce C89-style variable declarations in gcc?
I work on a code base which is mostly C with a little C++, and is mostly built with gcc but occasionally it needs to be built with MSVC. Microsoft's C compiler is still pretty much C89 with a few ...
5
votes
3answers
152 views
Can't initialize static structure with function pointer from another translation unit?
The Python documentation claims that the following does not work on "some platforms or compilers":
int foo(int); // Defined in another translation unit.
struct X { int (*fptr)(int); } x = ...
5
votes
2answers
214 views
It is possible to mix C89 code with C99 code?
I have doubts about many things related with the different C specifications.
If I program a library in C99, can I use it from C89 code? (using only the functions with C89 compliant definitions).
...
5
votes
5answers
531 views
Forward declare FILE *
How do I forward declare FILE * in C? I normally do this using struct MyType;, but naturally this doesn't appear to be possible.
If behaviour differs between C standards or compilers and with C++, ...
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 ...
5
votes
5answers
3k views
Why can't gcc find the random() interface when -std=c99 is set?
I do "#include <stdlib.h>" at the top of the source.
Example compilation:
/usr/bin/colorgcc -std=c99 -fgnu89-inline -g -Wall -I/usr/include -I./ -I../ -I../../ -I../../../ -I../../../../ ...
4
votes
3answers
250 views
How to read UTF-8 string given its length in characters in plain C89?
I'm writing a custom cross-platform minimalistic TCP server in plain C89. (But I will also accept POSIX-specific answer.)
The server works with UTF-8 strings, but never looks inside them. It treats ...
4
votes
3answers
866 views
A way to convert byte stream to packet stream in C89 on an embedded device
I’m working on with an embedded device that is connected to PC using rs232 (rs232 over USB).
I’m thinking about developing my own protocol:
<MAGIC><LENGTH><BINARY DATA><CRC> ...
3
votes
3answers
148 views
c89: Convert an int to void* and back
First off, this is not a dupe of:
Is it safe to cast an int to void pointer and back to int again?
The difference in the questions is this: I'm only using the void* to store the int, but I never ...
3
votes
4answers
480 views
Using M_PI with C89 standard
I'm using C and trying to get access to the constant M_PI (3.14159...). I have imported the math.h header file, but the M_PI constant was still undefined. Through some searching on StackOverflow I ...
3
votes
4answers
486 views
A good C equivalent of STL vector?
I've noticed that at several places in our code base we use dynamically expanding arrays, i.e. a base array coupled with an element counter and a "max elements" value.
What I want to do is replace ...
3
votes
2answers
165 views
Passing structs by pointer in C89
I am working with a C89 compiler and I'm coming across some pointer typing error.
Calling code:
struct cpu_state_type cpu_state;
//Stuff here....
foo()
{
print_out_cpu(&cpu_state);
}
...
3
votes
4answers
740 views
C89: signed/unsigned mismatch
Are signed/unsigned mismatches necessarily bad?
Here is my program:
int main(int argc, char *argv[]) {
unsigned int i;
for (i = 1; i < argc; i++) { // signed/unsigned mismatch here
...
3
votes
7answers
406 views
C89: Any beginner mistakes in this code?
I am new to C. (I'm using C89 on Visual Studio 2010.) I wrote a little program that uses a tree to give a histogram of arguments presented to the program. Are there any obvious beginner mistakes I've ...
3
votes
2answers
3k views
Printing out hex values of a char* array in C gives odd values for binary input
Here's an odd problem that's been stumping me for a bit.
The program is written in C89, and it reads a file into a char* array 16 bytes at a time (using fread and a size of sizeof(char)). The file is ...
3
votes
7answers
1k views
What techniques/strategies do people use for building objects in C (not C++)?
I am especially interested in objects meant to be used from within C, as opposed to implementations of objects that form the core of interpreted languages such as python.
2
votes
2answers
146 views
Declaring variables before use in old C
Recently I had to modify a legacy code that was compiled with a very old version of GCC (somewhere around version 2.3). Within a function, variable had to be declared before being used. I believe this ...
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
3answers
214 views
Why doesn't GNOME use C99?
Looking at mutter source code and evince source code, both still use C89 style of declaring all variables at the very beginning of the function, instead of where it is first used (limited scope is ...
2
votes
4answers
426 views
C check if file exists
In a project I have to do in C89 standard I have to check if a file exists.
How do I do this?
I thought of using
FILE *file;
if ((file = fopen(fname, "r")) == NULL)
{
printf("file doesn't ...
2
votes
1answer
531 views
How to rewrite C-struct designated initializers to C89 (resp MSVC C compiler)
guys, I've this problem:
Normally in C99 GCC (cygwin / MinGW / linux), there is dot-notation syntax for initializers in C struct.
Like this:
//HELP ME HOW TO REWRITE THIS (in most compact way) to ...
2
votes
7answers
344 views
Cast char to char array or char array to char?
So let's say I have a char and I want to strcat() it to a char array in a single line of code. For [a non-practical] example:
strcat("ljsdflusdfg",getchar());
Or I wanted to do the reverse, what ...
2
votes
2answers
189 views
Casting an int pointer to a char ptr and vice versa
The problem is simple. As I understand, GCC maintains that chars will be byte-aligned and ints 4-byte-aligned in a 32-bit environment. I am also aware of C99 standard 6.3.2.3 which says that casting ...
2
votes
3answers
255 views
Variable-length arrays in C89?
I've read that C89 does not support variable-length arrays, but the following experiment seems to disprove that:
#include <stdio.h>
int main()
{
int x;
printf("Enter a number: ");
...
2
votes
3answers
409 views
Use variadic functions in C89 without passing number of arguments or a final argument?
Let's say I have a variadic function foo(int tmp, ...), when calling foo function I need to know how many arguments there are. I'm aware of two ways of finding out how many arguments there are:
Use ...
2
votes
1answer
104 views
Syntax error while copying an multidimensional array to another in C
We are programming a ST269 microcontroller which has two IR distance sensors. To calibrate these sensors we made one table for each sensor with the distance we measured and the corresponding value we ...
2
votes
1answer
622 views
C89: getaddrinfo() on Windows?
I'm new to C89, and trying to do some socket programming:
void get(char *url) {
struct addrinfo *result;
char *hostname;
int error;
hostname = getHostname(url);
error = ...
2
votes
2answers
127 views
C: Trouble with Strings
I am new to C89, and don't really understand how strings work. I am developing on Windows 7.
Here is what I am trying to do, in Java:
String hostname = url.substring(7, url.indexOf('/'));
Here is ...
2
votes
4answers
3k views
C89 vs c99 GCC compiler
Is there a difference if I compile the following program using c89 vs c99? I get the same output. Is there really a difference between the two?
#include <stdio.h>
int main ()
{
...
2
votes
3answers
573 views
Increase a struct pointer with half the struct size
I just got an interesting problem to take care of, and I see no neat way to solve it.
I have two base data structures that represents a complex graph, declared something like this:
typedef struct ...
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
251 views
C89, Mixing Variable Declarations and Code
I'm very curious to know why exactly C89 compilers will dump on you when you try to mix variable declarations and code, like this for example:
rutski@imac:~$ cat test.c
#include <stdio.h>
int
...
1
vote
4answers
150 views
What's a good way to check availability of __restrict keyword?
I am looking a set of #ifdef's to check availability of __restrict keyword for GCC and Visual Studio. I assume that it needs to check compiler version, but I don't know for which versions it was ...
1
vote
1answer
337 views
Enabling VLAs(variable length arrays) in MS Visual C++?
How can i enable the use of VLAs, variable length arrays as defined in C99, in MS Visual C++ or that is not possible at all?
Yes i know that the C++ standard is based on C89 and that VLAs are not ...
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
2answers
94 views
Detect writable static data
I just discovered that some parts of the code I am working on incorrectly uses writeable static data where it could/should use constant data.
Short of doing a dumb search-and-replace for "static" -> ...
1
vote
1answer
332 views
VS 2008 and C99
I read with interest the post "How universally is C99 supported ?". One of the comments therein points that Microsoft doesn't support C99. But the comment symbol // works with VS 2008 and this symbol ...
1
vote
3answers
330 views
C variable declarations after function heading in definition
When reading some FreeBSD source code (See: radix.h lines 158-173), I found variable declarations that followed the "function heading" in the definition.
Is this valid in ISO C (C99)? when should ...