What will be the output of the given c++ program? Justify your answer.
#include
using namespace std;
int main()
{
int a, b, num;
for (a=1; a<=10; ++a)
{
for (b=1; b<=5; ++b)
num=a*b;
cout<
}
return 0;
}
Answers
Answered by
6
Answer:
✌
The output is
a*b=1*1=1
Answered by
0
Answer: it is hard
Explanation:
Similar questions