Example & Tutorial understanding programming in easy ways.

What if one header file is included twice in C language?

If any header file is include twice like:


#include<stdio.h>

#include<stdio.h>


-Then nothing to worries about this, the second line get ignored by the compiler and it give no error

Read More →