C Programming Tutorial 28 Patterns using for loop

preview_player
Показать описание
loops are used to create patterns in c.

Follow on Facebook:

Subscribe to our other channel:
Telusko Hindi :
Рекомендации по теме
Комментарии
Автор

2:57 when u have the ability to type 100 words per minute 😂😂

vineethkumar
Автор

Thank you very much sir these videos are very helpful for us 😇😇😇

zakariyakhan
Автор

This was the toughest one yet. A key to grasping it was having in mind the OR truth table and seeing the rows i1-4 and j1-4. I tried XORing the output and the corners disappeared. Then I Or'd just (i1 || i4) and finally understood what was going on.

FingersBlazin
Автор

Sir you explain so well thankyou the tutorial videos.😊

soumya__
Автор

Hey anyone please help with a link to the patterns even if they are written in a different language I just need to absorb the logic, I have assignments to complete

SenzoDlomo
Автор

Sir u r awesome i have saw a lot of teaching lecture but ur lectures have solved my all doubts, , , but still i can't make a project like man walking in rain or cross circle game can u plz make some lecture on that and also I can't find link on pattern

sadangani
Автор

Sir if you mind could you please trace the if statement I didn't catch that plz

mohammedtajammul
Автор

its not working on turbo c++, plz help what to do???

talkparas
Автор

#include <stdio.h>

int main()
{
int i;
for(i=1;i<=4;i++)
{
if(i==1||i==4)
printf("****");
else
printf("* *");
printf("\n");
}
return 0;
}

I tried this with single loop, but can any one fix the space issue ?

ShredderTheGreat