missing terminating > character.
Description
The compiler has detected a missing terminating ‘>’ character.
Causes
An #include directive lacks a closing angle bracket.
Example
Output
How to fix it ?
Add the closing bracket to resolve the error.
Syntax
-
#include <filename>
-
#include "filename"
Notes
Preprocessor directive #include copy another source file into the current source file at the line immediately after the directive.
See also