Search:

Type: Posts; User: carrotcake1029

Search: Search took 0.02 seconds.

  1. That is what is called an inclusion guard. You...

    That is what is called an inclusion guard. You may somewhere in your project, if it gets big, include the same header file multiple times. What it checks for is it a variable is defined, and if...
  2. Try something along these lines: main.c ...

    Try something along these lines:

    main.c

    #include <stdio.h>
    #include "other.h"

    int main (void)
    {
    printf("%d\n", getfavoritenumber());
Results 1 to 2 of 2