Top "Ansi-c" questions

ANSI C is an informal term sometimes used when referring to the C programming language standard published by the American National Standards Institute (ANSI) in 1989 .

Should I use "-ansi" or explicit "-std=..." as compiler flags?

I've read that ANSI C is not exactly the same as ISO C and compilers may differ in interpretation of …

c c89 compiler-flags ansi-c
Should I use ANSI C (C89)?

It's 2012. I'm writing some code in C. Should I be still be using C89? Are there still compilers that do …

c c99 c89 ansi-c
Simple Delete File Program in ANSI C for Windows

Looking for a simple program to a delete a file written in ANSI C. Just as an example how would …

windows file-handling ansi-c
Flex/Bison based lexer/parser for C language

Is there a simple lexer/parser for C language or a subset of it which is based on Flex/Bison? …

c compiler-construction bison flex-lexer ansi-c
Remove text from string after a certain character in C

I am reading lines from a file, the lines look like this: 89f81a03eb30a03c8708dde38cf:000391716 The …

c string char strip ansi-c
atof() for float instead of double

atof() returns a double, which results in a warning when I assign it to a float-value (and yes, I definitively …

c ansi-c atof