#include
Which function automatically flushes the buffer when closing a file?
Which of the following are correct objects for the instantiation of the output stream class?
Which function is used to read a single character from the console in C++?
What happens if a pointer is deleted twice in a C++ program?
What kind of iteration does the forward_list container provide in C++?
What is the correct statement about the variable P in the following code?
typedef char *charp;
const charp P;
Which of the following is an advantage of recursive insertion sort over its iterative version?
Which of the following is correct?
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
int i;
const char *arr[] = {"C", "C++", "Java", "VBA"};
const char *(*ptr)[4] = &arr;
cout << ++(*ptr)[2];
return 0;
}