Computer Science, asked by sumitkumar67670, 5 days ago

Write the output of the following program-
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int r;
for (int i = 1; i < 5; i++)
{
r = pow (i, i);
cout <<"\n"<<i<<"\t"<<r;
}
getct();
}​

Answers

Answered by purveshKolhe
0

Answer:

the out put will be

1

2

3

4

hope it helps

Similar questions