Author: Stan Eisenstat
Subject: Re: [Cs223] Including Hash.h into Hash.c
Date: Saturday, 11 Apr 2020, 17:28:45
> Message Posted By: Unknown
>
> I have written Hash.h and Hash.c and I am now trying to #include Hash.h in
> Hash.c. I am not sure how to do that since including the whole path
> ("C:\Users...\cs223\bin\Hash.h") does not work (although, I have checked
> that Hash.h is indeed saved in that directory).
Try
#include "Hash.h"
which will work as long as Hash.h is in the same
directory that you are compiling Hash.c.
--Stan-
PREV
INDEX
NEXT