C language print Hello

1. Run the code and the results are as follows.

Insert picture description here

2. Source code

#include<stdio.h>
void main ()
{

	    printf("\n	*  *  ****  *     *     ****\n");
        printf("	*  *  *     *     *     *  *\n");
        printf("	****  ****  *     *     *  *\n");
        printf("	*  *  *     *     *     *  *\n");
        printf("	*  *  ****  ****  ****  ****\n\n");
}

Guess you like

Origin blog.csdn.net/peter_young1990/article/details/115381768