This tag is for questions regarding the international standard ISO 9899:1990, also known as "C89", "C90" or "ANSI C", with amendments and technical corrigenda (as opposed to K&R C, C99, C11 or later C standard revisions).
We are using C89 on an embedded platform. I attempted to print out a size_t, but it did not …
c printf c89 size-t c-librariesI'm working on a Linux machine. Is there any system command to find the standard followed by the C compiler …
c compiler-construction c99 c89Is there a difference if I compile the following program using c89 vs c99? I get the same output. Is …
c gcc compiler-construction c99 c89Is there a standards-complaint method to represent a byte in ANSI (C89/90) C? I know that, most often, a char …
c types c89When I compile function with "gcc -o dene -Wall -ansi -pedantic-errors dene.c" ,gcc emits no error.(can you look …
c declaration compiler-warnings c89In a project I have to do in C89 standard I have to check if a file exists. How do …
c c89How can I enable the use of VLAs, variable length arrays as defined in C99, in MS Visual C++ or …
c visual-c++ c99 c89 variable-length-array