hackerzlab
08-04-2009, 02:05 PM
have to make a simple program and was wondering if there would be any other better way to have an output like this:
H
H E
H E L
H E L L
.,................
and goes on for the next few lines...
#include<stdio/h>
main()
{
printf(“H\nH E \nH E L\n”);
}
do you think there's a better way to have an output instead of using spaces in the code?
H
H E
H E L
H E L L
.,................
and goes on for the next few lines...
#include<stdio/h>
main()
{
printf(“H\nH E \nH E L\n”);
}
do you think there's a better way to have an output instead of using spaces in the code?