Computer Science, asked by nidhauk, 10 months ago

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 MRsteveAustiN
6

Answer:

$\mathscr{\large{\pink{ANSWER}}}$

The output is

a*b=1*1=1

Answered by MateenAshraf
0

Answer: it is hard

Explanation:

Similar questions