C Pattern Programs | Printing Stars in Hollow Right Triangle Shape | Tutorial for Beginners

preview_player
Показать описание
In this C pattern Programs tutorial you will learn to Print stars and numbers Hollow Right Triangle Shape.

You will learn how to breakdown the problem to smaller pieces, How to construct the logic and learn to write the program in C language.

Our Website

Social Media
Рекомендации по теме
Комментарии
Автор

I thought of just watching it but when I heard you saying, if you dislike it, hit the down button, so I had even subscribed your channel... Best explanation... Thank you sir

rimiatrineh
Автор

This is what we can call step-by-step learning for beginners.👍

newlife
Автор

I just started following your tutorials and I must say it's very detailed. Thank you so much I will practice well and come back with questions

ogochukwuujunwa
Автор

This kind of programming is too difficult to understand but now i get best hint .
Thank you for everything and thank you in advance !!

belayetwale
Автор

No one except you said to dislike his explained bro...

aasishchand
Автор

Bro! My teacher failed miserably at explaining this to our class. it was a nightmare. Thank you for this tutorial.

kenan
Автор

12:54 Sir You Should Remove the extra space from IF statment ....
THANK YOU SO MUCH SIR YOU HELPED ME TO UNDERSTAND THE CONCEPT BEFORE WATCHING THIS I WAS FEARED BUT NOW I'M CONFINDENT....

HERE SOME PRACITCAL :)

#include<stdio.h>

int main()
{
int row, col, totalrow;
printf("Enter the number of Rows");
scanf("%d", &totalrow);

for (row=1;row<=totalrow;row++)
{
for (col=1;col<=row;col++)
{
if ((col==1) || (row==totalrow) || (row==col))
{
printf("* ");
}
else
{
printf(" ");
}
}
printf("\n");
}
return 0;
}

akshatgarg
Автор

instead of OR can we use AND in if statement

adityasinghroll-
Автор

how can we print as a windmill shape ( 4 triangles on different direction) ?

nahinahmed
Автор

why it just a basic lessons but i feels it too difficult :((

pen