What is the correct way to declare a pointer in C++?
A. int ptr;
B. pointer int;
C. int* ptr;
D. ptr int;
Answer: Option C
A. int ptr;
B. pointer int;
C. int* ptr;
D. ptr int;
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