#pragma
Pragma is a Include Guards, it tells compiler whether to include header file again or not
// In myheader.h
#ifndef MYHEADER_H
#define MYHEADER_H
// Header contents go here
#endif // MYHEADER_HLast updated
Pragma is a Include Guards, it tells compiler whether to include header file again or not
// In myheader.h
#ifndef MYHEADER_H
#define MYHEADER_H
// Header contents go here
#endif // MYHEADER_HLast updated