Recently I have come across a couple of header files like
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <bits/stdc++.h>
I wanted to know the actual reason as to why '/' is used.
So far I have taken it as an operation to include the sub-header file of a bigger header file just like Java
import java.util.Scanner;
but
If you remove the '/' and try to include the header file as whole
It shows an error that header file doesn't exists.
Kindly clear the confusion regarding this problem.
Thanks in advance.