putc, putch and putchar in C

Sdílet
Vložit
  • čas přidán 17. 10. 2019
  • Check out our Discord server: / discord

Komentáře • 6

  • @animeshsarkar295
    @animeshsarkar295 Před rokem +1

    Sir, your videos are amazing and uniquely explained. I have start learning C and making notes out of your videos. Thank you Sir

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

    thank you so much sir

  • @banedon8087
    @banedon8087 Před rokem

    I think it's crazy that C++ doesn't ship with a single character input natively. I.e. press a character and it moves on, or simply scan at the time and moves on; Not having to press ENTER.

    • @CodeVault
      @CodeVault  Před rokem

      What I showed in the video was regarding C. C++ might have something in its standard library

  • @lxerlx2890
    @lxerlx2890 Před 4 lety

    At 4:14 , _fputchar_ is not a deprecated function in the C Standard simply because it doesn't exist and never existed in any official ANSI/ISO/IEC C standard. Also it is not, and has never been, a part of any POSIX standard. The error message from the compiler is far from clear and misleading.

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

      You're right, it wasn't in any standard but curiously enough it is supported in most compilers. The function name is deprecated in most **implementations** (aka compilers) of the C standard. Thanks for correcting it!