Computer Science, asked by abulfazill32oxhtsx, 1 year ago

Write a PHP Program to print numbers from 21 to 30 using a loop ?

Answers

Answered by raishubhanshu2p4rhnv
5

#include<stdio.h>

#include<conio.h>

void main()

{

for(i=21;i>=30;i++)

printf("%d",i);

getch();

}

Similar questions