79355853

Date: 2025-01-14 17:34:40
Score: 2
Natty:
Report link

If we use the include tag for our header file inside our c file; then we don't need to compile the header file again. In fact, the command: gcc hello.c hello.h might cause a problem of bloating since there is a chance of compiling the header file twice if it's already included in hello.c file. So, we just need to use #include "hello.h" at the top of our hello.c file, then run the command: gcc hello.c.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chotan