Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c99

GCC options to enforce Ansi C standard check?

c gcc c99

What C program behaves differently in run-time when compiled with C89 and C99?

c language-lawyer c99 c89

Is there a practical use for a `volatile restrict` pointer?

How to define extern variable along with declaration?

Creating a DLL in GCC or Cygwin?

Parameters declared restrict and compiler warnings

C: cast int to size_t

c casting int c99 size-t

Are all of the features of C99 also in C++?

c++ c c99 c89

What are "extended integer types"?

c gcc c99

Is returning va_list safe in C?

c c99 c89 variadic-functions

Why are compound literals in C modifiable

C - Implementing fast push of many elements to the end of array

c arrays optimization c99

"int" really required to be at least as large as "short" in C?

c standards c99 c89

Is it possible to instruct C to not zero-initialize global arrays?

c gcc embedded c99

Can "sizeof(arr[0])" lead to undefined behavior?

How enable c99 mode in gcc with terminal

c gcc c99

What can human beings make out of the restrict qualifier?

Bit-fields and sequence points

Understanding restrict qualifier by examples

Why can't I "goto default;" or "goto case x;" within a switch selection structure?

c c99 c89 c11