0x00. C Hello, World, gcc - printf - puts - putchar - sizeof, with practice | ALX بالعلربي

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

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

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

    انا مش عارفة اشكرك ازاي والله ❤

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

      الشكر لله ربنا يوفقك

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

    شرح رائع استمر

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

    شكرا ليك❤❤❤

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

      الشكر لله ♥

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

    عاش اقسم بالله

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

      تسلم يا اكرم والله
      ربنا يبارك فيك

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

    thanks for your effort ❤
    1:48:07 - you can use this syntax (sizeof(quo) / sizeof(char)) to get the number of characters in the quo array instead of counting them.

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

      yep thanks for this tip, but it's dealing with static number of characters you could make you code short by counting them
      and sure we will use this way on future videos all you have to get from this video how to deal with the gcc, and the whole process of how main.c works

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

    thanks a lot I faced some problems but I got it by your simple explanation

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

      You are most welcome

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

    شكرا جدا

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

      العفو عبده
      بالتوفيق

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

    شغل عالي
    بس عندي سؤال انت فاتح git bash بس الروت بتاعك على ايه لا مختلف عندي
    ظاهر عندي ال root c folder بتاع ال pc

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

      لازم تفتح ال git bash
      علي الفولدر نفسه بتاع المشروع وهوا هيقرا الريبو بتاع الجت هب اوتوماتيك

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

    سلام عليكم
    عنندي تعقيب بسيط وهو ان حضرتك مش منظم الشرح في نقاط بتجي قبل نقاط المفروض تكون مشروحة الاول
    بس مشكور علي الشرح واستمر

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

      انا مرتب النقاط حسب ترتيب
      alx
      لذالك بحاول قدر الامكان اشرح اللي هما عاوزين يوصلوه لحضرتك

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

    sudo command is not found, i ve been stuck in this error for hours, how did you manage to run this command in git bash??

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

      there are 2 sandbox check the other one , it may works

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

    عايز اسالك اخي هو انا اقدر اعتمد علي محتوي دا ولا دا مساعدة وبعدها ذاكر المصادر

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

      حضرتك انت حسب ظروفك ووقتك تقدر تحكم في الامر ده لانه في الاول و الاخر يرجعلك
      انا بشرح اللي هما طالبينه و بطبق عليه و بحل التاسكات في كل مره بأذن الله

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

    لو عاوز أطبق عملى ممكن اعرف أنت بتستخدم إيه علشان اقدر أطبق عملى

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

      تقدر تستخدم
      online compiler => www.onlinegdb.com/online_c_compiler
      او تنزل
      codeblocks

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

    hi , ho w can i solve this kind of error for question 6 [Got]
    Size of char: 1 byte(s)
    Size of an int: 4 byte(s)
    Size of long int: 4 byte(s)
    Size of long long int: 8 byte(s)
    size of a float: 4 byte(s)
    (139 chars long)
    [stderr]:
    (0 chars long)
    [Expected]
    Size of a char: 1 byte(s)
    Size of an int: 4 byte(s)
    Size of a long int: 4 byte(s)
    Size of a long long int: 8 byte(s)
    Size of a float: 4 byte(s)
    (144 chars long)
    [stderr]: [Anything]
    (0 chars long)

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

      you have many spaces in line 2
      Size of an int: 4 byte(s)
      it should be
      Size of an int: 4 byte(s)

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

      here is the code
      #include
      /**
      * main - Entry point
      *
      * Description: using sizeof to print the size of various types.
      *
      * Return: Always 0 (Success)
      */
      int main(void)
      {
      printf("Size of a char: %u byte(s)
      ", sizeof(char));
      printf("Size of an int: %u byte(s)
      ", sizeof(int));
      printf("Size of a long int: %u byte(s)
      ", sizeof(long int));
      printf("Size of a long long int: %u byte(s)
      ", sizeof(long long int));
      printf("Size of a float: %u byte(s)
      ", sizeof(float));
      return (0);
      }

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

      Thank you so much

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

    طب ال انت خدتو كوبي دا و عامل عليه blur اية دا

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

      ده التوكين اللي ممكن تعمله بنفس الخطوات

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

    السلام عليكم. كيف أحضر الملف بالأول حتى أشتغل عليه وأتبع الخطوات التي تتكلم عنها؟

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

      حضرتك اول شي بتعمل فولدر و تبدا ملف
      readme
      و بعد كده بتعمل اول ملف
      كل الخطوات موجوده في الفيديو و ممكن لو تدخل التيليجرام
      @alx_2023
      هقدر اساعدك اكتر

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

    شكرا بجد كتر خيرك ❤❤
    +
    ممكن تنزل لينك السلايد الي بتشرح منو

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

      بتنزل علي التيليجرام ممكن بس حضرتك تدخل الجروب هتلاقيها
      @alx_2023

  • @رحلةالسفرإليألمانيا
    @رحلةالسفرإليألمانيا ปีที่แล้ว

    لو سمحت انا مشيت ع نفس الخطوات وكان بيطلعلي نفس النتائج ولكن عند الشيك اداني ان كله غلط

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

      حضرتك ممكن تدخل جروب التيليجرام و تقول بس عندي مشكله في التاسك كذا و انا او من اللي موجودين مش هنتأخر
      @alx_2023

  • @RahmaShaban-fg4vs
    @RahmaShaban-fg4vs ปีที่แล้ว

    بيطلعلى ايرور فى correct output

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

      ممكن حضرتك تدخلي التيليجرام علي الجروب بنجاوب علي الأسأله و بنساعد اكتر

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

    التاسك رقم 6 بيظهرلى الرسالة دى
    Statement should start on a tabstop

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

      ممكن تدخل جروب التيليجرام و تورينا اسكرين من المشكله و هتتحل بأذن الله

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

    hello project c-hello world
    task 6
    i made the 6-size.c
    i've used chmod
    i did gcc 6-size.c
    ive tried gcc 6-size.c -m32 -o size32 2> /tmp/32 too but same problem please the deadline is very soon
    i habe the a.out file
    everything is good
    i've added commited and pushed to github
    but when i check the task
    i always ge check 4 and 3 wrong
    ive tried everyithing
    is there anything ive missed

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

      here is the code
      #include
      /**
      * main - Entry point
      *
      * Description: using sizeof to print the size of various types.
      *
      * Return: Always 0 (Success)
      */
      int main(void)
      {
      printf("Size of a char: %u byte(s)
      ", sizeof(char));
      printf("Size of an int: %u byte(s)
      ", sizeof(int));
      printf("Size of a long int: %u byte(s)
      ", sizeof(long int));
      printf("Size of a long long int: %u byte(s)
      ", sizeof(long long int));
      printf("Size of a float: %u byte(s)
      ", sizeof(float));
      return (0);
      }

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

    source files please

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

      of which task!

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

    1 compiler wrong

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

      i didn't get that, kindly tell me more details about the compiler error you face

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

      @@sadatmisr نفس حلك ال checker بيشوفه غلط مش عارف ليه
      لكن لما بعمل الحل من غير -o بيطلع صح عادى باعتباران ملف الخرج بيكون نفس الاسم لكن بامتداد مختلف
      لكن طريقتك ال checker شايفها غلط

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

      ​@@sayedmohsen7714sn