ไม่สามารถเล่นวิดีโอนี้
ขออภัยในความไม่สะดวก

E F Patterns Questions | C Programing Malayalam | Pattern Problems Malayalam | Star Patterns

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ก.ย. 2023
  • E F Patterns Questions | C Programing Malayalam | Pattern Problems Malayalam | Star Patterns
    ❤❤❤❤
    ✅Connect with me on LinkedIn: / afsalmadathingal
    Telegram Channel : t.me/+K9is2TQnoHk0Mjk1
    ❤❤❤❤
    E F Patterns Questions
    C Programming Malayalam
    Pattern Problems Malayalam
    Star Patterns in C
    Programming Challenges
    Loop Structures
    C Programming Tutorial
    Pattern Printing
    C Language Problems
    Malayalam Programming
    Coding Practice
    Pattern Logic
    Algorithmic Patterns
    Looping Constructs
    Programming for Beginners
    Pattern Printing Techniques
    Nested Loops
    Programming Patterns
    Coding Exercises
    Malayalam Coding
    Pattern Problem Solving
    Coding in C
    Pattern Designs
    Looping in C
    Star Pattern Examples
    C Programming Basics
    Pattern Visualization
    Code Challenges
    Programming Puzzles
    Pattern Printing in C
    Coding Patterns
    Learn C Programming
    Pattern Programming in Malayalam
    C Programming Practice
    Pattern Printing Tricks
    Malayalam Coding Challenges
    Star Pattern Coding
    C Programming Concepts
    Pattern Printing Tutorials
    C Programming Questions
    Looping Techniques
    Algorithmic Challenges
    Pattern Printing Patterns
    Pattern Drawing
    C Programming Fundamentals
    Coding Practice in Malayalam
    Star Pattern Algorithms
    C Language Basics
    Pattern Printing Examples
    Programming Tips in Malayalam

ความคิดเห็น • 23

  • @aaa-os3pj
    @aaa-os3pj 17 วันที่ผ่านมา +1

    Bro 8th one logic for each row horizontal * count -- vertical * count forms multiples of 3. 4-1 =3 ;8-2=6;10-1=9 . let row =4
    let isOne=true //for vertical stars
    let str=""
    var val
    for(let i=1;i

  • @arshadmuhammedmc2151
    @arshadmuhammedmc2151 2 หลายเดือนก่อน +2

    Question 2 (2*(i-1)+1) simple 😌

  • @ajiths6132
    @ajiths6132 9 หลายเดือนก่อน +2

    Nice One. Very cleared ✌

  • @justaman2288
    @justaman2288 3 หลายเดือนก่อน

    pwoli

  • @Anonymous-du8pk
    @Anonymous-du8pk 5 หลายเดือนก่อน +4

    11:27 QUESTION 3
    15:35 QUESTION 4
    18:56 QUESTION 5
    24:36 QUESTION 6
    29:06 QUESTION 7
    31:45 QUESTION 8
    41:46 QUESTION 9
    48:01 QUESTION 10

  • @ananthakrishnabhat5076
    @ananthakrishnabhat5076 5 หลายเดือนก่อน +4

    Thanks a lot Sir for this video. Your Videos are Really Helpful.
    I would like to share another logic for 5th question which worked for me. Please Correct me if I'm wrong.
    #include
    int main()
    {
    int i,j,row;
    printf("Enter the number: ");
    scanf("%d",&row);
    for(i=1;i

  • @user-tt5qt3ur8v
    @user-tt5qt3ur8v 8 หลายเดือนก่อน +1

    was worried about these patterns...thanks for presenting it

  • @muhsinmuhsin8342
    @muhsinmuhsin8342 3 หลายเดือนก่อน +1

    23:45
    question 5
    #include
    #include
    int main(void) {
    int i,j,row;
    setbuf(stdout , NULL);
    printf("enter your row");
    scanf("%d",&row);
    for(i=1;i

  • @sahnoon6963
    @sahnoon6963 26 วันที่ผ่านมา +1

    Question 3
    public class E3 {
    public static void main(String[] args) {
    int number = 4;
    int cols = 0;
    for (int i = 0; i < number; i++) {
    cols++;
    int row = (i == 0) ? 1 : i * 3;
    for (int j = 0; j < row; j++) {
    System.out.print("* ");
    }
    System.out.println();
    if (cols == 4) break;
    for (int j = 0; j < cols; j++) {
    for (int k = 0; k < cols; k++) {
    System.out.print("* ");
    }
    System.out.println();
    }
    }
    }
    }

  • @Arunnnnnnue
    @Arunnnnnnue 9 หลายเดือนก่อน +2

    Noice one

  • @user-ow1hs2ne2p
    @user-ow1hs2ne2p 5 หลายเดือนก่อน +5

    #include
    int main()
    {
    int i,j,k;
    printf("*
    ");
    for(i=1;i

    • @Haran-l7v
      @Haran-l7v 27 วันที่ผ่านมา

      which question

  • @aaa-os3pj
    @aaa-os3pj 17 วันที่ผ่านมา +1

    Bro brocamp enganeyund. Cheyyunna projects ethokkeyaanennu oru video cheyyumo

  • @harshsurendran4037
    @harshsurendran4037 9 หลายเดือนก่อน

    Super sir.. please give us some more questions... F pattern ithreyum easy anen arnjilla..

  • @mathewvj5398
    @mathewvj5398 3 หลายเดือนก่อน +3

    Question 8
    #include
    #include
    int main(void) {
    int i,j,k;
    setbuf(stdout,NULL);
    for(i=1;i

    • @Haran-l7v
      @Haran-l7v 27 วันที่ผ่านมา

      6 loop🙂

    • @aaa-os3pj
      @aaa-os3pj 17 วันที่ผ่านมา

      let row =4
      let isOne=true //for vertical stars
      let str=""
      var val
      for(let i=1;i

  • @Haran-l7v
    @Haran-l7v 26 วันที่ผ่านมา

    question 8👇
    int main()
    {
    int i,j,k=1,v=4;
    for(i=1;i