//To all those marking this as a duplicate, I did search before and found some similar ones, however, those did not fully answer my question and I'm still not sure how to answer the question I have included in this post. I need someone nice enough to explain their difference a little bit more in depth.
What is the difference of #include < something > and #include "something.h" ? Also can someone tell me why the 3rd option is right in the multiple choice question below?
Suppose you wanted to make use of terminal control routines I gave and all your codes are put in yourprog.cpp. The interface for terminal control is declared in term control.h and the implementation is stored in term control.cpp. Which of the following include lines should be put in yourprog.cpp so your program can use the terminal control routines?
include <term control>
include <term control.h>
include "term control.h"
include <iostream>