READ() | WRITE() | GCC | LINUX | SYSTEM CALLS | DETAILED | 2024

Поделиться
HTML-код
  • Опубликовано: 10 мар 2020
  • In this topic, we are going to learn about read() and write() system calls and how its parameter works in the Linux command line using the GCC compiler.
    Next Video (System Calls) :- • Display any word on sc...
    OS system calls with practical examples link :- • OS SYSTEM CALLS | CODE...
    Linux beginners: - • Linux Beginner Tutorials
    Learn Python with DSA for Beginners :- • PYTHON DSA COURSE | ...
    Number system:- • NUMBER SYSTEM | BINARY...

Комментарии • 12

  • @hritikgupta8765
    @hritikgupta8765 4 года назад +2

    Very nice explanation👌👌
    Great job!

  • @ibksme601
    @ibksme601 Год назад +2

    simple and straight to point thanks for this

    • @gearpath
      @gearpath  Год назад

      Thanks for the response. It made my day😁

  • @fabiozucconi7068
    @fabiozucconi7068 5 месяцев назад

    Super useful tutorial, tyvm Sir!

  • @ouvertn
    @ouvertn Год назад +1

    Thanks!
    Really needed this.

  • @ClaudioPalma-yb3ok
    @ClaudioPalma-yb3ok Год назад +1

    ti amo

  • @natesr5373
    @natesr5373 6 месяцев назад

    well done !!

    • @gearpath
      @gearpath  6 месяцев назад

      Thanks, If you want anymore topics that you can't find, Share here We will do our research and post here

    • @natesr5373
      @natesr5373 6 месяцев назад +1

      @@gearpath c programming
      macro function and some syntax related to macro

  • @SlideRSB
    @SlideRSB 2 месяца назад

    It seems to me that the 10 from the printf output is just a garbage value since the variable o was defined but never initialized.

    • @riyazshaik864
      @riyazshaik864 2 месяца назад +1

      10 isn't a garbage, we gave a limit to write function , you could see at 6:40 part that inside write function we gave buffer value as 10 , so it can store maximum 10 characters, so the buffer was full, it can only written 10 since it's the max buffer we assigned, you change to greater than 14 , you will get different value other than 10 and missing part of the characters will also be printed