51 .
What is the output of this program ?

#include <`iostream`>    (Please neglect `` this signs)
using namespace std;
int main()
{
int n = 15;
for ( ; ;)
cout << n;
return 0;
}
A.15
B. error
C. infinite times of printing n
D.none of the mentioned
View AnswerAns: infinite times of printing n