This tag is for questions regarding the International Standard ISO 9899:1999, aka "C99", with technical corrigenda, and for questions about code written in C99 (as opposed to K&R C, C89 or later C Standard revisions like the 2011 revision C11).
This is inspired by this question and the comments on one particular answer in that I learnt that strncpy is …
c security c99 standard-libraryWhile researching how to do cross-platform printf() format strings in C (that is, taking into account the number of bits …
c types printf c99 format-specifiersi'm looking for the standard functions to convert a string to an stdint.h integer, like int i = atoi("123"); unsigned …
c type-conversion c99 stdintThis code: #define __STDC_FORMAT_MACROS #include <inttypes.h> #include <stdio.h> #include <stdlib.h&…
c++ c++11 printf c99 code-translationI want to do something in C99 one way, otherwise to perform it another way. What is the #define to …
c macros c99From the man page on my system: void *memmove(void *dst, const void *src, size_t len); DESCRIPTION The memmove() …
c c99 undefined-behavior unspecified-behavior