Computer Science, asked by shylumutna14, 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 sidhant014
0

Answer:

it would be better if you search the code in Google I am sure that u will find your answer very quickly

Similar questions