Video není dostupné.
Omlouváme se.

C Programming! (40) Streams

Sdílet
Vložit
  • čas přidán 23. 07. 2018
  • PIEAS (Pakistan Institute of Engineering and Applied Sciences)

Komentáře • 10

  • @hyrumdickinson9172
    @hyrumdickinson9172 Před rokem

    great video!

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

    Thanks for the video, i had a hard time understanding what a FILE structure is but you made it really clear :D I didn't know it was this important :o

  • @stevenz9364
    @stevenz9364 Před 4 lety

    Hi! I think you explain such interesting topics and very complex ones! Thanks so much and congrats, you helped me a lot.

  • @heidik1757
    @heidik1757 Před 2 lety

    Couldn't make a better. Just wanted to show support -Cheers

  • @chandankorado3749
    @chandankorado3749 Před 3 lety +1

    You have only one playlist and that is currently programming
    We need all topics of cs, it, cse... On computer field... Requested please

  • @nandoscottimuzzi95
    @nandoscottimuzzi95 Před 5 lety

    Very interesting explanation.
    Do you know a book that explains that more deeply?

  • @saumyojitdas4212
    @saumyojitdas4212 Před 4 lety

    at 4:55 u told everything computer treats as a file but i knew that it treats everything as binary numbers.
    please give clear info

    • @stevenz9364
      @stevenz9364 Před 4 lety +2

      There are no conflicts. Computers understand binary, everything deep inside is just a buch of ones and zeros, but he said that information (0 & 1) is treated as a file. Everything is a file, and files are information (1 & 0). No conflicts

  • @KunalKumar-ex9gm
    @KunalKumar-ex9gm Před 3 lety

    Watch in 2x

  • @saumyojitdas4212
    @saumyojitdas4212 Před 4 lety +1

    struct _iobuf {
    char *_ptr;
    int _cnt;
    char *_base;
    int _flag;
    int _file;
    int _charbuf;
    int _bufsiz;
    char *_tmpfname;
    };
    typedef struct _iobuf FILE;
    this structure data type "file" is used when?? suppose i am taking a input of any data type from the keyboard then after i enter some character or digit then it goes to where? How does *fp works can u show more elaboretly
    how does
    FILE *stdin;
    FILE *stdout;
    FILE *stderr;
    these 3 pointers fit in the whole proccess??