Computer Science, asked by subham25034, 3 months ago

what is coputer how its work write in hundred words?​

Answers

Answered by Ferozghaffar1856
0

// Program to explain Simple For Loop.

#include <iostream.h>

#include <conio.h>

void main()

{

int i;

clrscr();

for( i=1 ; i<=10 ; i=i+1 )

{

cout << i << ' ';

}

getch();

}

Output:

1 2 3 4 5 6 7 8 9 10

Answered by shaikhsaheba5737
0

Answer :

may it's help you

Attachments:
Similar questions