Monday, September 9, 2013

#include

What does the line of code:

#include <stdio.h> 

do?


#include <stdio.h>  is the line of code that tells the compiler to include certain pre-written libraries in your program. This way, the library of functions such as printf do not have to be defined every-time you make a new project.

No comments:

Post a Comment