Alphabet G in pattern using for loop in C language.| Star pattern programs | Harsh Monitor

preview_player
Показать описание
Alphabet pattern printing programs, star pattern printing

In this video we will show you how to print the star pattern or how to print alphabet pattern using for loop.In this video will also get the knowledge about how to make pattern in C. In this Video we are going to print the alphabet G in star pattern using for loop. This video will show you how to print G character using for loop in C. In this video we are going to print G character in C language. We are going to upload all a to z characters in C Language and we will also upload the program that will show you how to print any name in pattern by taking value from the user using for loop in C language.

So Subscribe our channel.

We have pasted the main() code below.
the syntax of program of C is similar to each other.

So watch full video to run your program successfully, because the bellow given code is incomplete.......

NOTE: The angular braces is not allowed in discription
we have use (smaller than) (greater than) instead of angular braces.


main()
{
int i,j;
for(i=1;i(smaller than)=15;i++)

{
for(j=1;j(smaller than)=12;j++)
{
if(((i(greater than)3&&i(smaller than)10)&&(j(greater than)2))||((i(greater than)9&&i(smaller than)12)&&(j(greater than)2&&j(smaller than)7))||((i(greater than)11&&i(smaller than)14)&&(j(greater than)2&&j(smaller than)11)))
{
printf(" ");
}
else
{
printf("*");
}

}

printf("\n");

}

}
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
If you want to use this song Jarico - Island [NCS BEST OF] in your project you must copy & paste this into your description:
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Рекомендации по теме