C typedef 📛

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

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

  • @BroCodez
    @BroCodez  3 ปีที่แล้ว +41

    #include
    #include
    //typedef char user[25];
    typedef struct
    {
    char name[25];
    char password[12];
    int id;
    } User;
    int main()
    {
    // typedef = reserved keyword that gives an existing datatype a "nickname"
    User user1 = {"Bro", "password123", 123456789};
    User user2 = {"Bruh", "password321", 987654321};
    printf("%s
    ", user1.name);
    printf("%s
    ", user1.password);
    printf("%d
    ", user1.id);
    printf("
    ");
    printf("%s
    ", user2.name);
    printf("%s
    ", user2.password);
    printf("%d
    ", user2.id);
    return 0;
    }

    • @sida_g567
      @sida_g567 3 ปีที่แล้ว

      You r so fuckin nice

    • @ThaiNguyen-gg8xj
      @ThaiNguyen-gg8xj 2 ปีที่แล้ว +1

      This is what a chad do

  • @FastFSharp
    @FastFSharp ปีที่แล้ว +43

    Just found this channel. Bro Code is the giga-chad of programming tutorials!

  • @supeer5605
    @supeer5605 ปีที่แล้ว +15

    to everyone here i advise you to code 1-2 examples to understand them fully it helped me alot

  • @theugliestking-wt4by
    @theugliestking-wt4by 3 หลายเดือนก่อน +5

    man at the end of the each tutorial when he says suscribe to become a fellow bro feels really good . a feeling of brotherhood (not gay )

    • @Ava-x9z3n
      @Ava-x9z3n 2 หลายเดือนก่อน

      thats pretty gay

  • @Garrison86
    @Garrison86 2 ปีที่แล้ว +9

    Better than my Profs explanation, really appreciate the content.

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

    bro you dont understand how much you have helped me right now lmfao

  • @gdivya1895
    @gdivya1895 2 ปีที่แล้ว +3

    Seriously underranted videos. Well explained !

  • @adinbohn1205
    @adinbohn1205 ปีที่แล้ว +2

    Awesome explanation, thank you

  • @Campo_
    @Campo_ 2 ปีที่แล้ว +3

    Quick and to the point, thanks bro.

  • @jacquetrahan8481
    @jacquetrahan8481 2 ปีที่แล้ว +5

    Qht didn't you have to use strcpy() for the string in this one but we had to use that in the struct video?

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

    Great explanation. Thank you.

  • @NoufM-ls2pv
    @NoufM-ls2pv 4 หลายเดือนก่อน

    Thank you so much you made C language so easy to understand

  • @_txt_7398
    @_txt_7398 ปีที่แล้ว

    ur videos always help me :)
    Thank u very much

  • @offensivebias3965
    @offensivebias3965 ปีที่แล้ว +2

    nice and simple, do you have video explaining the arrow operator ?

  • @mobinaghashahi3850
    @mobinaghashahi3850 2 ปีที่แล้ว +1

    short and helpful.

  • @aldinoerlanggadesiariyanto1649
    @aldinoerlanggadesiariyanto1649 ปีที่แล้ว

    Quick and nice tutorial

  • @KryptoniteEgypt1
    @KryptoniteEgypt1 ปีที่แล้ว

    You are the best ❤️

  • @tushar8983
    @tushar8983 ปีที่แล้ว +1

    why r u not getting views?
    bcz of your short titles !

    • @tushar8983
      @tushar8983 ปีที่แล้ว

      but i like them ;)

  • @SeanOBrien-l7k
    @SeanOBrien-l7k ปีที่แล้ว

    Very understandable

  • @acatisfinetoo3018
    @acatisfinetoo3018 11 หลายเดือนก่อน

    I've seen structures declared differently by passing the struct name to malloc and returning a pointer...then the members are accessed like structname->member. what is the reason for this? I see this pattern a lot in C code, but don't know why it is done this way.

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

    🔥🔥

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

    So it basically just saves you from using the "struct" call to build a struct, doesn't really seem like too much of a time saver.

  • @mangledskateboarding1553
    @mangledskateboarding1553 ปีที่แล้ว +2

    Hi im stupid. Why would this be prefered over using an array to hold the struct?

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

    thanks!

  • @Sakura-sh9du
    @Sakura-sh9du ปีที่แล้ว

    thanks

  • @landob6393
    @landob6393 ปีที่แล้ว

    ecstatic

  • @sida_g567
    @sida_g567 3 ปีที่แล้ว +1

    Cool bruh

  • @ashvikvijai8114
    @ashvikvijai8114 6 หลายเดือนก่อน

    random comment

  • @PSIwolf39
    @PSIwolf39 10 หลายเดือนก่อน

    Done! here's my code:
    #include
    #include
    #include
    #include
    #include
    typedef struct{
    char speciesName[40];
    int legs;
    bool endangered;
    } animal;
    int main(){
    animal spider = {"Spider", 8 , false}; // Or at least I assume spiders aren't endangered.
    printf("The %s is ", spider.speciesName);
    if(spider.endangered){
    printf("an endangered species ");
    }
    else{
    printf("a non endangered species ");
    }
    printf("that has %d legs.", spider.legs);
    }