C_138 Enumeration in C | enum data type in C Language

Sdílet
Vložit
  • čas přidán 10. 09. 2024

Komentáře • 134

  • @Homelessbillionaire
    @Homelessbillionaire Před 2 lety +51

    Believe in yourself, take on your challenges, dig deep within yourself to conquer fears. Never let anyone bring you down. You got to keep going.”

  • @parisa9374
    @parisa9374 Před 2 lety +42

    Dear Jenny, May you please make some videos on:
    - C pre-processors
    - macros
    - Storage classes in C (auto, extern, static, register)
    - Command-line arguments in C
    Looking forward to a more comprehensive series like this on OOP (Java, C++) and Computer Architecture too! Thank you very much for your time and effort in training us🙏 Also, I am so happy and proud of a lady like you with this much confidence👏
    And keep up the good work 💪

  • @harman9132
    @harman9132 Před 2 lety +16

    This is your last video (23.03.2021) and i just wanted to say that i'm soo glad that i found your playlist on data structures and algorithms, i was hopeless about this subject...
    I think you will help a looot of future students, like millions.. so keep the good work on, and teach always in the way you do: with knowledge and clearity, quality is always > then quantity. Gently from Italy.

  • @Manpreet_saini696
    @Manpreet_saini696 Před rokem +7

    #include
    Void main()
    {
    int s;
    Enum subjects{maths, science,history,English};
    printf("enter the subjects:");
    Scanf("%d",&s);
    Switch(s)
    {
    case maths:printf("maths");
    break;
    case science:printf("science");
    break;
    case history:printf("history");
    break;
    case english:printf("english");
    break;
    default:printf("not in list");
    break;
    }
    }
    O/P
    enter the subjects:3
    english

  • @kapilg8707
    @kapilg8707 Před 2 lety +3

    It’s great that you are able to condense a time consuming concept to 20 mins.

  • @ntandomtshivo8818
    @ntandomtshivo8818 Před 5 měsíci

    You help me throughout my course in Electrical Engineering, now I'm doing my final year. Thank you Jenny, all the love from Azania(so called south africa)

  • @AvinashKashyap-ux9ch
    @AvinashKashyap-ux9ch Před rokem +2

    i study in nit.......but i must say u teach better than our phd holder professors

  • @pavanvspk8928
    @pavanvspk8928 Před 2 lety +1

    As a lecturer, i am fond of with ur lectures. 👍

  • @mokshatyaveeramalla19
    @mokshatyaveeramalla19 Před 2 lety +1

    No one can explain better than u mam,ur teaching experience is too good mam,so plz 🙏 do videos on all concepts.

  • @Skclubs988
    @Skclubs988 Před 2 lety +5

    Love you mam ❤❤
    I cleared 5th sem with help of your video❤

  • @sahilprabhune9059
    @sahilprabhune9059 Před 2 lety +1

    The way you teach is really very nice and understandable, so thank you so much.

  • @udaysinghrana5725
    @udaysinghrana5725 Před rokem +16

    #include
    #include
    void main()
    {
    enum Shape{
    Circle,Triangle,Rectangle
    };
    printf("Hi Choose Shape!!!
    0 for Circle
    1 for Triangle
    2 for Rectangle
    ");
    int ch;
    scanf("%d",&ch);
    switch(ch)
    {
    case Circle:printf("
    You have choosen Circle");
    break;
    case Triangle:printf("
    You have choosen Triangle");
    break;
    case Rectangle:printf("
    You have choosen Rectangle");
    break;
    default:printf("
    Wrong Character Entered");
    break;
    }
    }

  • @Akhilkanaboina
    @Akhilkanaboina Před 2 lety +1

    one of very respected teachers to me !!

  • @Shivammishrachemistryfaculty

    hello mam !
    Good evening🥰
    Thanku for this Amazing session🙏🤩

  • @rajeevchordia1425
    @rajeevchordia1425 Před 9 měsíci

    Asi teacher ho toh ma roz class attend karunga mast samjhaya. Mam apne ❤🕊️

  • @rajibmahato9005
    @rajibmahato9005 Před 2 lety +3

    I want a series like this on Discrete Mathematics. I hope you will think about it.

  • @wzyamike9
    @wzyamike9 Před 3 měsíci

    ma'am you're examples are so bad to understand
    but you're teaching is amazing!!!

  • @anuragkaushal123
    @anuragkaushal123 Před 2 lety

    I think I got the perfect teacher for programming!!!

  • @ambikadutta1881
    @ambikadutta1881 Před 3 měsíci +1

    #include
    enum gender {Female=0, Male=1, Others=2};
    int main() {
    int value;
    printf("Enter your gender code to get the discount:
    ");
    printf("0 for Male, 1 for Female and 2 for Others
    ");
    scanf("%d", &value);
    switch (value) {
    case Female:
    printf("Your discount: 50 percent
    ");
    break;
    case Male:
    printf("Your discount: 40 percent
    ");
    break;
    case Others:
    printf("Your discount: 60 percent
    ");
    break;
    default:
    printf("Please enter a valid code
    ");
    break;
    }
    return 0;
    }

  • @user-uu4eb5ow7o
    @user-uu4eb5ow7o Před 5 měsíci

    Your teaching skills very nice

  • @abdulwaki8590
    @abdulwaki8590 Před 2 lety +1

    Great teacher regarding

  • @prashantjatt7404
    @prashantjatt7404 Před 2 lety

    Mam really you are looking so.... Cute while teaching 😍
    Plz don't left without replying

  • @saileela7982
    @saileela7982 Před 2 lety +2

    Mam can u please upload a video class on command line arguments plzzzzzzz .........

  • @user-uu4eb5ow7o
    @user-uu4eb5ow7o Před 5 měsíci

    Very nice video

  • @Homelessbillionaire
    @Homelessbillionaire Před 2 lety

    I am thankful for all of those who said NO to me. It’s because of them I’m doing it myself.”

  • @01Naveen
    @01Naveen Před 8 měsíci +4

    Self referential structure 😢😢

  • @solitaire.arts_8808
    @solitaire.arts_8808 Před 2 lety

    We can't refer 'case 'with string like "Sunday" etc.....it only accepts either integer or char constants ....
    .overall I loved the way she explains things...she has covered most of doubts which can strike in our minds while studying this🤗🤗🤗

  • @richiagrawal1616
    @richiagrawal1616 Před rokem +1

    #include
    int main()
    {
    enum { sun, mon, tue, wed, thr, fri, sat};
    int a;
    printf("enter any day");
    scanf("%d",&a);
    switch(a)
    {
    case sun: printf("have fun");
    break;

    case mon:printf("show up");
    break;

    case tue: printf("show up everyday");
    break;

    case wed: printf("show up everyday");
    break;

    case thr: printf("keep showing up");
    break;

    case fri: printf("last mile, cheers");
    break;

    case sat: printf("wohoo!! you did it:-)");
    break;

    default: printf("try typing 0 to 6");
    }
    }

  • @rahulranjan705
    @rahulranjan705 Před 2 lety +3

    Being a doctor it's very difficult to focus on what she is teaching but still I am trying to learn. 😂😂 She is gorgeous 🤩

  • @surajmendhe2594
    @surajmendhe2594 Před 2 lety +1

    Great explanation mam 💯👍

  • @sinarezaei218
    @sinarezaei218 Před 6 měsíci

    thank you

  • @shaunak265
    @shaunak265 Před 2 lety

    mam your lectures are really amazing request u to pls upload videos on macros in c programming

  • @Gyarsi-wb1hw
    @Gyarsi-wb1hw Před 8 měsíci

    Mam please make a video on command line argument....🙏🙏
    what is command line argument??

  • @ygirlzcreations5630
    @ygirlzcreations5630 Před rokem +3

    Hii mam I have a doubt in this,
    #include
    Enum language {c,java=3,python,php};
    main(){
    float arr[c+php]={1.0f,2.1f,3.2f,4.3f,5.4f};
    enum language lang=python;
    Printf(“% .1f”,arr[lang>>1+1]);
    }
    Output: 2.1
    How this output is possible (I need explanation for this mam)

    • @tylerd5924
      @tylerd5924 Před rokem +1

      You are a good koschan

    • @phytoplancton4038
      @phytoplancton4038 Před rokem +1

      i think;
      lang>>1 is 2
      lang>>1+1 is 1
      because machine starts reading from right side
      it thinks
      lang>>(1+1)

    • @anti-cringe6681
      @anti-cringe6681 Před rokem

      Lang=4
      Arr[4>>1+1]
      + Have high precedence than >>
      So first 1+1=2
      Then 4>>2=1
      Arr[1]=2.1

  • @vinitsharma6200
    @vinitsharma6200 Před 2 lety +1

    Mam ASCII Code is the topic that we want. Thank You

  • @akhilmittal3283
    @akhilmittal3283 Před 2 lety +3

    Ap bahut accha padhate ho mam

    • @uttamdhaterwal5365
      @uttamdhaterwal5365 Před 2 lety

      bhai pahle English sikhni pdegi ..bol kya rhi h ..smaj me nhi aa rha muje to

  • @dhanushammayappan9419

    Thank you so much Mam.

  • @sureshmudhe4250
    @sureshmudhe4250 Před 2 lety +1

    Mam can we take enum value by scanf function?

  • @rahulbarve9836
    @rahulbarve9836 Před rokem

    So my roll number is 45. thank you.

  • @abdulrahimjalloh363
    @abdulrahimjalloh363 Před 11 měsíci

    Thanks mam

  • @dinnepatijaswanthkumarredd3373

    Lub u Jennie ❤️

  • @albertamenyah3019
    @albertamenyah3019 Před rokem

    Please can you make a video on command line arguments and static libraries in C programming

  • @abdulrahimjalloh363
    @abdulrahimjalloh363 Před 11 měsíci

    Assignment of enum in switch case:
    #include
    //Define enum
    enum Day {Sun, Mon, Tue, Wed, Thur, Fri, Sat};
    int main(void)
    {
    //Declare enum
    enum Day Today;
    //Assign to variable
    Today=Fri;
    //enum in switch case
    switch(Today)
    {
    case Sun:
    printf("Today is Sunday and value is: %d",Today);
    break;
    case Mon:
    printf("Today is Monday and value is: %d",Today);
    break;
    case Tue:
    printf("Today is Tuesday and value is: %d",Today);
    break;
    case Wed:
    printf("Today is Wednesday and value is: %d",Today);
    break;
    case Thur:
    printf("Today is Thursday and value is: %d",Today);
    break;
    case Fri:
    printf("Today is Friday and value is: %d",Today);
    break;
    case Sat:
    printf("Today is Saturday and value is: %d",Today);
    break;
    default:
    printf("Invalid day");
    }
    return 0;
    }

  • @rithipblader268
    @rithipblader268 Před 2 lety +1

    you miss comment line arguments and preprocessor ma'am

  • @smith_67
    @smith_67 Před 2 lety

    Thank you mam for video

  • @SrishanthYadavEndur
    @SrishanthYadavEndur Před 7 měsíci

    Mam ,make a video on command line arguments

  • @sivakrishna6485
    @sivakrishna6485 Před 2 lety

    Volatile,extern,

  • @motemontero5592
    @motemontero5592 Před 2 lety +1

    madam please teach threadung and multthreading in c

  • @KMH-ue1ew
    @KMH-ue1ew Před 10 měsíci

    The teacher we want

  • @satyajitmanna8501
    @satyajitmanna8501 Před 2 lety

    thanks maam love from satyajit .🙃

  • @KhizarSports004
    @KhizarSports004 Před 2 lety

    Good mam MyUstadG ki tra ap k method be bot acha ha

  • @harshabambu
    @harshabambu Před rokem

    Could You please explain about command line arguments in C

  • @VinayagaMotorsTsy
    @VinayagaMotorsTsy Před 2 lety

    Pls upload a video on setjmp and longjmp

  • @amityraipur
    @amityraipur Před 2 lety +1

    Please create a project in C

  • @sreevishnu99
    @sreevishnu99 Před 2 lety

    Pls make a video on commanfline arguments

  • @sairampolisetty2059
    @sairampolisetty2059 Před 2 lety +1

    Mam how many topics we are left over in C please tell me mam
    😊😊

  • @nagamahalakshmik8273
    @nagamahalakshmik8273 Před 2 lety

    Dear mam can u make videos on c pre processor commands and in data structures skip lists . On skip lists no proper video is made I fetched many all are confusing

  • @swarnalisaha_
    @swarnalisaha_ Před 2 lety

    Ma’am is this playlist complete ?

  • @santoshmang4991
    @santoshmang4991 Před 2 lety

    Super teach madam,,, and you are also so beautiful

  • @madhavinetha5839
    @madhavinetha5839 Před 2 lety

    Maam please explain structures with functions

  • @poojaryrahul9590
    @poojaryrahul9590 Před rokem +1

    Mam I'm here Rahul 😂

  • @ganesh166
    @ganesh166 Před 2 lety

    Nice explanation 👍👍👍

  • @aadarshkumar7505
    @aadarshkumar7505 Před 2 lety

    But maam in a class more then one Rahul, but Roll no is unique, so roll no is good.🤗

  • @jacksonmwendwamuendo7847
    @jacksonmwendwamuendo7847 Před 2 lety +1

    Kindly is there any video about variadic functions in C ? Kindly do one ..... thanks for the great work you are doing

  • @nagireddybhargav5534
    @nagireddybhargav5534 Před rokem

    mam can explain how to use scanf for enum for user

  • @Tangerine465
    @Tangerine465 Před rokem

    01:45

  • @vyasinfotechvs9200
    @vyasinfotechvs9200 Před rokem

    enum is a part of C++, if you use C Compiler it will not be work.... Lot of users use C++ compilor for C programming... So it is Like Jurcy cow concept to teach enum in C instead of C++

  • @manishasaini2142
    @manishasaini2142 Před 2 lety

    Mam your are left with one more concept that is bit filed

  • @sumitra563
    @sumitra563 Před 2 lety +1

    Madam ji mujhe notes chahiye mca ka

  • @N1v3dh
    @N1v3dh Před 2 lety +1

    Hi ma'am I am learning c from your videos it helped me alot..i am still learning at this late night..i thought I should take a 10min break and saw your funny videos I was stunned by your behind the scenes video which was uploaded a couple of years ago and I am stunned by your effort on teaching us (I didn't know it was that hard)i am sure there is a lot more hardwork which you can't really make a video and show us ..i just wanna say thank you from my heart ..lots of love from Kerala...❤️
    A proud student😻

  • @VinayagaMotorsTsy
    @VinayagaMotorsTsy Před 2 lety

    Real time example of enum is

  • @baseerap
    @baseerap Před 2 lety

    Classic explanation. Thanks jenny :)

  • @thevalleyexplorer989
    @thevalleyexplorer989 Před 2 lety

    I am here Just to watch your cuteness 🥰

  • @g.surendar9165
    @g.surendar9165 Před 2 lety

    Good evening madam

  • @sahsad3213
    @sahsad3213 Před 2 lety

    Please say about volatile keyword

  • @shahrearjahan9159
    @shahrearjahan9159 Před 2 lety

    Ma'am you are looking so sweet today 😑😪😌

  • @venkateshsure246
    @venkateshsure246 Před 2 lety

    Mam please start telling about java programs

  • @g.surendar9165
    @g.surendar9165 Před 2 lety

    4th sem computer science video links unnaya

  • @rukkuraghu4927
    @rukkuraghu4927 Před 2 lety

    I think you forgot bitfield.....

  • @motemontero5592
    @motemontero5592 Před 2 lety

    madam please teach thereding and multthreding ijn C

  • @SanskritiTechSolution
    @SanskritiTechSolution Před 2 lety

    Please create a project in c

  • @rajibbin4563
    @rajibbin4563 Před 2 lety

    Ma'am internship video please......

  • @Rajendra_Sen
    @Rajendra_Sen Před 2 lety +1

    First comment

  • @aniketkumar3126
    @aniketkumar3126 Před 2 lety

    ❤❤❤

  • @saikumarbokka5709
    @saikumarbokka5709 Před 2 lety

    Love you medam

  • @mr.xenond1134
    @mr.xenond1134 Před 2 lety

    Mam please start C++

  • @rushibhoyar3631
    @rushibhoyar3631 Před 2 lety

    Mam, javascript making video

  • @harshadc8202
    @harshadc8202 Před rokem

    Mam who is rahul😅

  • @ChauhanJiVlogs007
    @ChauhanJiVlogs007 Před 2 lety

    Itne saal se pada raho ho... C language kitne badi hai ... Abhi tak complete kyu nahi ho oaye

    • @uttamdhaterwal5365
      @uttamdhaterwal5365 Před 2 lety

      English sikhni pdegi pahle smj me nhi aa rha kuch ..kya bol rhi h

  • @chandrabhanu5907
    @chandrabhanu5907 Před rokem

    Has someone told you that you looks and speaks like Adah sharma

  • @johnsumith2107
    @johnsumith2107 Před 2 lety

    Mam plz start c++

  • @bgmtrendzjsp2252
    @bgmtrendzjsp2252 Před 2 lety

    Hi mam how are you?

  • @heartofmagic2003
    @heartofmagic2003 Před 2 lety

    Data seince course in you video upload mam

  • @Rajendra_Sen
    @Rajendra_Sen Před 2 lety +1

    First view

  • @akhilmittal3283
    @akhilmittal3283 Před 2 lety

    Hlo jenny mam u r superb mam

  • @poonamrathod6818
    @poonamrathod6818 Před 2 lety

    Hame to English aati hi nhi 😢😢

  • @asitswain7211
    @asitswain7211 Před 2 lety

    Ma'am u r so beautiful. U r my crush.

  • @SanskritiTechSolution
    @SanskritiTechSolution Před 2 lety

    Hii mam

  • @channabasavachannabasava4928

    Madam are married 😍

  • @maxithirtytwo8602
    @maxithirtytwo8602 Před 2 lety

    Hyy mam please one reply mam ❤️