What is the correct way to include the C++ standard input/output library header file in a C++ program?
A. #include "stdio"
B. #include <stdio.h>
C. #include <iostream>
D. #include "iostream.h"
Answer: Option C
A. #include "stdio"
B. #include <stdio.h>
C. #include <iostream>
D. #include "iostream.h"
Answer: Option C
What does the 'cin' object in C++ represent?
A. File output stream
B. File input stream
C. Standard output stream
D. Standard input stream
Join The Discussion