Prt forming
int I; Define an integer variable

Void prt( )// defines a function.

{

for(I = 5; I<8; I++)// cycle, I is from 5 to 8.

{

printf("%c ",' * "); //Print a "*"

printf(" \ t "); //There is a tab between two * symbols.

}//Personally, I think we should put a bracket here, because this is the distance between two * numbers. If you don't add it, print three * signs first and then add a space. That's not quite right.

}

Main() // Here is the main function. I don't need to say it, just like above.

{ for(I = 5; I < = 8; i++)