Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

Can GCC warn me about modifying the fields of a const struct in C99?

Tentative definitions in C and linking

Bizarre use of conditional operator in Linux

c linux gcc c99

Why is int x[n] wrong where n is a const value?

c arrays constants c99

difference between c99 and c11 [closed]

c c99 c11

Passing a multidimensional variable length array to a function

c arrays c99

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

c integer c99 portability c89

What's the C++ equivalent of UINT32_MAX?

c++ types 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?