Computer Science, asked by harshnayan24, 11 months ago

Wap and daf to display the natural number from 1 to 100

Answers

Answered by Jon0nym0us
2

Answer:

#include <stdio.h>

#include <conio.h>

void main()

{

int i;

clrscr();

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

{

printf("\n %d",i);

}

getch();

}

Similar questions