Computer Science, asked by Inna4044, 1 year ago

HOW TO WRITE THIS PROGRAM IN QBASIC:
TO PRINT THE SUM OF 100 NATURAL NUMBERS

Answers

Answered by omegads03
1

#include<stdio.h>

#include<conio.h>

void main()

{

 int i,sum=0;

 clrscr();

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

     sum+= i;

 printf(" \n sum \n ");

 getch ();

}

Answered by veenapkher
0

Answer:

hmmmmmmmmmmmmmmmm

Explanation:

Similar questions