Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

Signedness of enum in C/C99/C++/C++x/GNU C/GNU C99

c++ c enums c99 signed

Which C99 features are available in the MS Visual Studio compiler?

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

Literal string initializer for a character array

c string pointers arrays 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