✅ Switch Statement in C

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

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

  • @sadhusasikala3992
    @sadhusasikala3992 4 หลายเดือนก่อน

    I completed this video, understood and practiced.
    switch statement is alternate of if-else statement

  • @rekhaharikaharshita7153
    @rekhaharikaharshita7153 5 หลายเดือนก่อน

    This video is also completed sir

  • @abhiabhi7424
    @abhiabhi7424 7 หลายเดือนก่อน

    Already day 13 class switch statement teach chesavu kada bro

    • @svgie2047
      @svgie2047  7 หลายเดือนก่อน

      yes - this is same video , i just moved it down in the playlist because both sessions should in sequence

  • @VinodKumar-dj4yr
    @VinodKumar-dj4yr 8 หลายเดือนก่อน

    It's very Interesting coding anna
    Chala kothaga undhi and interest ga undhi anna nerchukunedaniki I'm waiting for next loops conspect anna

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

      very good , once we start learning for loop , arrays , functions
      you will feel lots of kick
      get ready ..

  • @sailaxmikomirineni5336
    @sailaxmikomirineni5336 8 หลายเดือนก่อน

    As html and css plays a main role in good looking of static pages. I have already basic and intermediate knowledge on html and css. I have covered Icube Playlist. I want to learn advance topic in css and HTML
    Can you suggest me a youtube channel which are updating with Content with HTML AND CSS?

    • @svgie2047
      @svgie2047  8 หลายเดือนก่อน

      did you get a chance to complete amazon design clone from ICubeCode ??
      if you are done - start learning Bootstrap from Net Ninga

  • @nagarjun1385
    @nagarjun1385 8 หลายเดือนก่อน

    expression lo operators use cheyavacha bro

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

      No || The expression used in switch must be integral type ( int, char and enum). Any other type of expression is not allowed.
      I will explain in next session

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

      please read it for more info || www.geeksforgeeks.org/interesting-facts-about-switch-statement-in-c/

  • @Watchandrewatch4593
    @Watchandrewatch4593 8 หลายเดือนก่อน

    Communication skill record class

    • @svgie2047
      @svgie2047  8 หลายเดือนก่อน

      Ohh sorry , that session was not recorded properly , from next week we will take care of it and upload

  • @TECH-update25
    @TECH-update25 8 หลายเดือนก่อน

    sir super 30 recorded classas upload cheyatledenty sir

    • @svgie2047
      @svgie2047  8 หลายเดือนก่อน

      last 3 days , we did't get a chance to conduct session for super 60 , so i recorded and uploaded
      from tomorrow 13 Th feb - again we will be live at 11 AM

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

    int main() {
    // now months
    int month = 10;

    switch (month){

    case 1 :
    printf("January");
    break;
    case 2 :
    printf("February");
    break;
    case 3 :
    printf("March");
    break;
    case 4 :
    printf("April");
    break;
    case 5 :
    printf("May");
    break;
    case 6 :
    printf("June");
    break;
    case 7 :
    printf("July");
    break;
    case 8 :
    printf("August");
    break;
    case 9 :
    printf("September");
    break;
    case 10 :
    printf("October");
    break;
    case 11 :
    printf("November");
    break;
    case 12 :
    printf("December");
    break;

    default:
    printf("please enter valid number");
    }

    return 0;
    }