Tagged Questions

This tag is for questions regarding the International Standard ISO 9899:1999, aka "C99", with technical corrigenda, and for questions about code written in C99 (as opposed to K&R C, C89 or later C Standard revisions like the soon-to-be C1x).

learn more… | top users | synonyms

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
10answers
24k views

Visual Studio support for new C / C++ standards?

I keep reading about C99 and C++11 and all these totally sweet things that are getting added to the language standard that might be nice to use someday. However, we currently languish in the land of ...
38
votes
3answers
581 views

In C99, is f()+g() undefined or merely unspecified?

I used to think that in C99, even if the side-effects of functions f and g interfered, and although the expression f() + g() does not contain a sequence point, f and g would contain some, so the ...
35
votes
15answers
2k views

Which functions in the C standard library commonly encourage bad practice?

This is inspired by this question and the comments on one particular answer in that I learnt that strncpy is not a very safe string handling function in C and that it pads zeros, until it reaches n, ...
33
votes
4answers
921 views

Bizarre use of conditional operator in Linux

In the 3.0.4 Linux kernel, mm/filemap.c has this line of code: retval = retval ?: desc.error; I've tried compiling a similar minimal test case with gcc -Wall and don't get any warnings; the ...
32
votes
7answers
22k views

C99 stdint.h header and MS Visual Studio

To my amazement I just discovered that the C99 stdint.h is missing from MS Visual Studio 2003 upwards. I'm sure they have their reasons, but does anyone know where I can download a copy? Without ...
29
votes
17answers
1k views

What are the most useful new features in C99?

C99 has been around for over 10 years, but support for it has been slow coming, so most developers have stuck with C89. Even today, I'm sometimes mildly surprised when I come across C99 features in C ...
26
votes
3answers
721 views

What does dot (.) mean in a struct initializer?

static struct fuse_oprations hello_oper = { .getattr = hello_getattr, .readdir = hello_readdir, .open = hello_open, .read = hello_read, }; I don't understand this C syntax well. I ...
25
votes
7answers
2k views

How universally is C99 supported?

How universally is the C99 standard supported in today's compilers ? I understand that not even GCC fully supports it. Is this right ? Which features of C99 are supported more than others, i.e. which ...
24
votes
4answers
1k views

Are there machines, where sizeof(char) != 1?

Are there machines (or compilers), where sizeof(char) != 1 ? Does C99 standard says that sizeof(char) on standard compliance implementation MUST be exactly 1? If it does, please, give me section ...
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 ...
21
votes
2answers
2k views

How, exactly, does the double-stringize trick work?

At least some C preprocessors let you stringize the value of a macro, rather than its name, by passing it through one function-like macro to another that stringizes it: #define STR1(x) #x #define ...
20
votes
2answers
247 views

is i=f(); defined when f modifies i?

Related question: Any good reason why assignment operator isn't a sequence point? From the comp.lang.c FAQ I would infer that the program below is undefined. Strangely, it only mentions the call ...
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 ...
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 ...
19
votes
3answers
2k views

Why are there digraphs in C and C++?

I learned today that there are digraphs in C99 and C++. The following is a valid program: %:include <stdio.h> %:ifndef BUFSIZE %:define BUFSIZE 512 %:endif void copy(char d<::>, ...
18
votes
3answers
488 views

Is “inline” without “static” or “extern” ever useful in C99?

When I try to build this code inline void f() {} int main() { f(); } using the command line gcc -std=c99 -o a a.c I get a linker error (undefined reference to f). The error vanishes if I ...
17
votes
1answer
3k views

Realistic usage of the C99 'restrict' keyword?

I was browsing through some documentation and questions/answers and saw it mentioned. I read a brief description, stating that it would be basically a promise from the programmer that the pointer ...
14
votes
3answers
661 views

Reasons not to use _Bool in Objective-C?

Since C99, C now has a proper Boolean type, _Bool. Objective-C, as a strict superset of C, inherits this, but when it was created back in the 1980s, there was no C Boolean type, so Objective-C defined ...
14
votes
6answers
613 views

What is the point of the C99 standard?

C99 adds several useful features to the language, yet I find it difficult to recommend any practice which depends upon C99. The reason for this is because there are few (any?) actual implementations ...
14
votes
7answers
529 views

c99 goto past initialization

While debugging a crash, I came across this issue in some code: int func() { char *p1 = malloc(...); if (p1 == NULL) goto err_exit; char *p2 = malloc(...); if (p2 == NULL) ...
14
votes
2answers
8k views

Setting std=c99 flag in GCC

I was wondering if there were any files in which I could set the -std=c99 flag, so that I would not have to set it for every compilation. I am using GCC 4.4 on Ubuntu.
13
votes
6answers
1k views

Free static checker for C99 code

I am looking for a free static checker for C99 code (including GCC extensions) with the ability to explicitly say "these preprocessor macros are always defined." I need that last part because I am ...
12
votes
3answers
458 views

Is the next C standard actively developed?

Is there currently a group working on the next C standard (by next, I mean after C99)? If so, what are the features likely to make it in?
11
votes
4answers
143 views

Is it always safe to convert an integer value to void* and back again in POSIX?

This question is almost a duplicate of some others I've found, but this specifically concerns POSIX, and a very common example in pthreads that I've encountered several times. I'm mostly concerned ...
11
votes
3answers
353 views

Compiler support of GNU Statement Expression

Which modern compilers support the Gnu Statement expression (C and C++ languages). What versions should I have to use a statement expressions? Statement expression is smth like ({ code; code; retval ...
11
votes
3answers
218 views

In C, if B is volatile, should the expression (void)(B = 1) read B

I work on compilers for a couple of embedded platforms. A user has recently complained about the following behaviour from one of our compilers. Given code like this: extern volatile int ...
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 ...
11
votes
5answers
734 views

How to implement `memmove` in standard C without an intermediate copy?

From the man page on my system: void *memmove(void *dst, const void *src, size_t len); DESCRIPTION The memmove() function copies len bytes from string src to string dst. ...
11
votes
4answers
705 views

Literal string initializer for a character array

In the following rules for the case when array decays to pointer: An lvalue [see question 2.5] of type array-of-T which appears in an expression decays (with three exceptions) into a pointer to ...
10
votes
4answers
413 views

Good introduction to <inttypes.h>

I want to recommend the use of <inttypes.h> to someone doing printf with mixed 32/64 bit builds. I tried to Google an introduction or tutorial page with a few examples and usage guidelines, but ...
10
votes
4answers
238 views

In C, are const variables guaranteed to be distinct in memory?

Speaking of string literals, the C99 standard says (6.4.5.6): It is unspecified whether these arrays are distinct provided their elements have the appropriate values. If the program attempts to ...
10
votes
2answers
302 views

During C macro expansion, is there a special case for macros that would expand to “/*”?

Here's a relevant example. It's obviously not valid C, but I'm just dealing with the preprocessor here, so the code doesn't actually have to compile. #define IDENTITY(x) x #define PREPEND_ASTERISK(x) ...
10
votes
5answers
294 views

Is “*p = ++(*q)” undefined when p and q point to the same object?

after reading about sequence points, I learned that i = ++i is undefined. So how about this code: int i; int *p = &i; int *q = &i; *p = ++(*q); // that should also be undefined ...
10
votes
2answers
216 views

How to get involved in C standardization process?

Lately I've been getting interest in C standardization. I want to participate in development of C1X. I want to put forward my ideas (irrespective of they being accepted/rejected). I want to know the ...
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 ...
10
votes
6answers
652 views

C99 backward compatibility

I'm used to old-style C and and have just recently started to explore c99 features. I've just one question: Will my program compile successfully if I use c99 in my program, the c99 flag with gcc and ...
9
votes
3answers
442 views

A magic number 127 in my C book [closed]

Possible Duplicate: What limits the number of nested loops in c? Hello. When I read my C book, it says Nesting for-Loop in C can continue even further up to 127 levels! How does 127 ...
9
votes
15answers
784 views

Avoid duplicating code

let's say I have: switch( choice ) { case A: stmt; do_stmt_related2A; break; case B: stmt; do_stmt_related2B; break; case C: something_different(); ... } ...
9
votes
2answers
889 views

Is there a #define for C99?

I want to do something in C99 one way, otherwise to perform it another way. What is the #define to check for? #ifdef C99 ... #else ... #endif
9
votes
6answers
2k views

Does the C preprocessor strip comments or expand macros first?

Consider this (horrible, terrible, no good, very bad) code structure: #define foo(x) // commented out debugging code // Misformatted to not obscure the point if (a) foo(a); bar(a); I've seen two ...
9
votes
4answers
2k views

Smart pointers/safe memory management for C?

I, and I think many others, have had great success using smart pointers to wrap up unsafe memory operations in C++, using things like RAII, et cetera. However, wrapping memory management is easier 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 ...
8
votes
19answers
2k views

C - the most useful user-made C-macros (in GCC, also C99)?

What C-macros is in your opinion is the most useful? I have found the following one, which I use to do vector arithmetics in C: #define v3_op_v3(x, op, y, z) {z[0]=x[0] op y[0]; \ ...
8
votes
6answers
873 views

What can human beings make out of the restrict qualifier?

If I got the C99 restrict keyword right, qualifying a pointer with it is a promise made that the data it references won't be modified behind the compiler's back through aliasing. By contrast, the way ...
8
votes
3answers
692 views

Tentative definitions in C99 and linking

Consider the C program composed of two files, f1.c: int x; f2.c: int x=2; My reading of paragraph 6.9.2 of the C99 standard is that this program should be rejected. In my interpretation of ...
7
votes
2answers
224 views

Type of unsigned bit-fields: int or unsigned int

Section 6.3.1.1 of the C99 standard contains: The following may be used in an expression wherever an int or unsigned int may be used: [...] A bit-field of type _Bool, int, signed int, ...
7
votes
5answers
244 views

C99: can imaginary part of complex be a negative zero

Is it possible to store negative zero in imaginary part of C99 complex float? How I should statically initialize complex constants with signed imaginary part? I have a small example, but I can't ...
7
votes
7answers
557 views

What is wrong with using turbo C?

I always find that some people (a majority from India) are using turbo C. I cannot find any reason to use such outdated compiler... But I don't know what reasons to give when trying to tell them to ...
7
votes
3answers
138 views

Where can I find a table of all the characters for every C99 Character Set?

I'm looking for a table (or a way to generate one) for every character in each of the following C Character Sets: Basic Character Set Basic Execution Character Set Basic Source Character Set ...

1 2 3 4 5 6