Computer Science, asked by karthi9942, 7 months ago

What is the output of the program?
#include <iostream>
using namespace std;
int main()
{
enum days
{
mon, tues, wed, thurs, fri, sat, sun
};
for (int num mon; num <= sun; num++)
cout << num++ + (days (num));
return 0;
}​

Answers

Answered by riyashroy
0

Answer:

community answers by others

Similar questions