Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c89

"int" really required to be at least as large as "short" in C?

c standards c99 c89

What parts of C are most portable?

c lua portability c89

Why can't I "goto default;" or "goto case x;" within a switch selection structure?

c c99 c89 c11

Is it legal and well defined behavior to use a union for conversion between two structs with a common initial sequence (see example)?

c++ c c99 unions c89

Forward declare FILE *

Valid programs in C89, but not in C99

c language-lawyer c99 c89

Why can't gcc find the random() interface when -std=c99 is set?

c gcc random c99 c89

Why do some C standard headers begin with 'std' while others don't?

c c99 c89 c11

A good C equivalent of STL vector?

c c89

K&R Exercise 1.16 - Limitation on line length

c kernighan-and-ritchie c89

Does either ANSI C or ISO C specify what -5 % 10 should be?

c c99 modulo c89

Using M_PI with C89 standard

c math c89

Enabling VLAs (variable length arrays) in MS Visual C++?

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

How to sum large numbers?

c c89 largenumber

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

c types c89

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

What's the difference between "int" and "int_fast16_t"?

c integer c99 portability c89

Why didn't C have a boolean data type prior to C99?

c language-design c99 c89

Why was mixing declarations and code forbidden up until C99?

c c99 c89