What can you do in C without “std” includes? Are they part of “C,” or just libraries?

后端 未结 11 1008
孤独总比滥情好
孤独总比滥情好 2021-02-02 06:11

I apologize if this is a subjective or repeated question. It\'s sort of awkward to search for, so I wasn\'t sure what terms to include.

What I\'d like to know is what th

11条回答
  •  逝去的感伤
    2021-02-02 06:38

    Yes you can do a ton of stuff without libraries.

    The lifesaver is __asm__ in GCC. It is a keyword so yes you can.

    Mostly because every programming language is built on Assembly, and you can make system calls directly under some OSes.

提交回复
热议问题