Q. What will be the output of the following C++ code?
Code:#include <iostream>
using namespace std;
void car{
cout << "Audi R8";
}
int main() {
car();
return 0;
}
β
Correct Answer: (C)
compile time error