Is there an equivalent of python help() in C?

117 views Asked by At

If I import a module, or have any class, I can do something like help(class) in python to get a description that are premade by the programmer. Is there such a way in C?

1

There are 1 answers

1
AudioBubble On

There is no built-in function that I'm aware of but you can find more information by running man for some commands if you run a unix system.

If you can't run man on your OS, you can also check out devdocs, or the documentation of the library you want to add to your project.