Computer Science, asked by rajdevhet, 3 months ago

write a program to print "HELLO" in big block letters ; each should have a height of seven characters and width of five characters​

Answers

Answered by itzHATERxx
0

Answer:

#include<stdio.h>

void main()

{

int i=0;

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

{

if(i%2==0)

{

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

}

}

return 0;

}

Similar questions