Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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

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

c kr-c c89

How to generate NaN, -Infinity and +Infinity in ANSI C?

c nan c89 infinity

Are prototypes required for all functions in C89, C90 or C99?

c c99 c89

Is the behavior of subtracting two NULL pointers defined?

c++ c c99 c89

Is there any reason to use C instead of C++ for embedded development? [closed]

c++ c embedded c89

Where can one find the C89/C90 standards in PDF format?

c ansi c89

Why should you use strncpy instead of strcpy?

Is the "struct hack" technically undefined behavior?

c undefined-behavior c89

How does the below program output `C89` when compiled in C89 mode and `C99` when compiled in C99 mode?

c printf comments c99 c89

Variable declaration placement in C

c declaration c89

What is the difference between C, C99, ANSI C and GNU C?

c gcc c99 c89 ansi-c

What is the behavior of integer division?

c math c99 c89 integer-division