Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

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

C99 inline function in .c file

c c99

What is the use of the `inline` keyword in C?

c inline c99

Is there any reason not to use fixed width integer types (e.g. uint8_t)?

c integer byte sizeof c99

Is type-punning through a union unspecified in C99, and has it become specified in C11?

c c99 unions c11 type-punning

How does the compiler allocate memory without knowing the size at compile time?

What is the default C -std standard version for the current GCC (especially on Ubuntu)?

c ubuntu gcc c99 c11

Printf long long int in C with GCC?

c gcc printf c99

func() vs func(void) in C99

c c99

Setting std=c99 flag in GCC

c programming-languages c99

Why are there digraphs in C and C++?

c++ c c99 digraphs

Is the behavior of subtracting two NULL pointers defined?

c++ c c99 c89