Online Programming Server

Login

Login with facebook [?]

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 ID73
TitleChapter 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?

Post Your Comment

Title
Message