Star Pattern 4 | Printing Pattern in C | C Programming Tutorials

preview_player
Показать описание

Connect & Contact Me:

******************************************

More Playlists:

#patternprintinginC
#CLanguageTutorials
#jennyslectures
Рекомендации по теме
Комментарии
Автор

I have not seen anyone who has broken the logic and explained like this. Awesome

abhi
Автор

Best ever explanation iny life.

You are really doing good.Not only schools even in Institutes they are simply saying think! Think! think!

But you are only the one who really explain step by step.

People like you are really great who takes such effort.

ulaganathans
Автор

Hands down the best video series to learn patterns!! Thank you maam !

arooshi
Автор

I dont think anybody can teach better than you nested you so

sajidsaifi
Автор

Thankyou ma'am!! All of these star patterns helped me Improve my grip over nested for loops

Shamit
Автор

So beautifully broken down and explained!

yashnayak
Автор

Hi mam
I am thankful to you
I was not able to write little bit code but after watching your lectures my encourage is increasing about the programming
Thank you so much mam

fizzarashid
Автор

M here almost after 2 yrs
And
OMG how change u r .
Btw your teaching style is still lovely, means ❤❤.

SonuKumar-tvdm
Автор

Thank you so much mam,
Before this video i was thinking to just learn few programs which will important in exams.
But now I can solve each one logically
Thank you mam.

rudraraval
Автор

Thank you mam....iam a big fan of ur lectures❤️from Kerala..

harithakesavan
Автор

You can do it in 2 loops.

for(i=1; i<=n; i++){
for(j=1; j<=n; j++){
if(i+j<=n)
printf(" ");
else
printf("* ");
}
printf("\n");
}

jagadeeshkj
Автор

Thank you so much I am doing mca par mera yeh concept clear nahi tha par aapka way of teaching is Yaad ho jaata hai bs sunn ke Thank you so much Mam always remain happy and bahut aagae badhiyae aap life

madhavisinha
Автор

Wonderful Lectures..Thank you so much.. Anyone will fall in love with programming after seeing your lectures..And I am in...❤

irfaanmeera
Автор

One of the best learning playlist for Patterns, .. I had ever seen like this way of understandable teaching sister...😊🎉🔥🙏🏼🥳

vigneshvikky
Автор

Your Beauty Comes From Your Knowledge and Skills, Thanks For Teaching Us For Free Of Cost..

HemakotiBonthada
Автор

Didi apki lexture mai mujse iss video ka lesson samaj mai aah gayah ( Thank you so much Jenny Didi )

monmimusic
Автор

Logic is so simple and understandable. Tq

SushmithaCAcharya
Автор

I teach maths to secondary students. This is not just a star pattern it's Pascal's triangle. Programming is so illustrative.

externalpoint
Автор

Getting crct o/p...that satisfaction is priceless..tq for bringing that🙏

lakshmihymavathichaturvedu
Автор

Here is the another simple method for this type of Star Pattern Printing in C👇

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

int rows, i, j;
printf("Enter the number of rows");
scanf("%d", &rows);

for(i=1;i<=rows;i++){
for(j=1;j<=rows;j++){
if(i+j<=rows){
printf(" ");
}else{
printf("* ");
}
}
printf("\n");
}
return 0;
}

mashhoorkhan