Online Programming Server
Login
[
?
]
Menu
Main Page
Tutorials
[
?
]
Problems
[
?
]
Contests
[
?
]
Help / FAQ
Facebook
Tutorial 73: Chapter 1 - ABC of C & Data Types
You are here:
Tutorials
>>
Basic
>>
C
>>
C Programming Basics
>>
Chapter 1 - ABC of C & Data Types
Tutorial ID
73
Title
Chapter 1 - ABC of C & Data Types
The “#include”
What does this line do?
#include <stdio.h>
int main() { printf("Hello, world!"); return 0; }
This is a preprocessor directive #include <stdio.h>
The “include” directive ask the preprocessor to import the content of “stdio.h” into the source file before compilation
But, what’s it for?
Add to My Course
Post Your Comment
Title
Message
Facebook