Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

GCC with -std=c99 complains about not knowing struct timespec

c posix c99 timespec

Why does sizeof(x)++ compile? [duplicate]

c c99

Maximum size of size_t

c gcc sizeof c99 size-t

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

c language-design c99 c89

How universally is C99 supported?

c c99 standards-compliance

Why was mixing declarations and code forbidden up until C99?

c c99 c89

How to wrap printf() into a function or macro?

c logging c99

What's the proper use of printf to display pointers padded with 0s

c pointers printf c99

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

c c99 c89

What is the correct type for array indexes in C?

c types indexing c99

Is there a document describing how Clang handles excess floating-point precision?

Smart pointers/safe memory management for C?

What is the difference between intXX_t and int_fastXX_t?

c optimization types integer c99

Anonymous union within struct not in c99?

c gcc struct c99 unions

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

What are the incompatible differences between C(99) and C++(11)?

c++ c c++11 c99

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

Does a[a[0]] = 1 produce undefined behavior?

How to properly add hex escapes into a string-literal?

c c99

Does the C preprocessor strip comments or expand macros first? [duplicate]

c comments c-preprocessor c99