My compiler is complaining that printf is undefined ...

Q

My compiler is complaining that printf is undefined! How can this be? It's the world's most popular C function...

✍: Guest

A

Allegedly, there are C compilers for Microsoft Windows which do n ot support printf, on the argument that printf is for printing to old-fashioned terminals, while under Windows the right way to display text is to call xxx to open a window and then xxx to display text in it. It may be possible to convince such a compiler that what you are writing is a ``console application'' meaning that it will take care of opening a ``console window'' for you automatically, and condescend to let you call printf to print stuff to it.

2015-07-03, 1127👍, 0💬