What parts of ANSI C are not incorporated into C++?
Function declarations / definitions were a problem at my old job.
Legal ANSI but not C++...
noreturntype()
{
}
In ANSI, the declaration does not have to match the definition...
noreturntype();
noreturntype( int whateverdude )
{
}