Solution: Fix the Linker Error
We'll cover the following...
#ifndef CONFIG_H #define CONFIG_H extern int count; void print_count(void); #endif
Solution: Fix the linker error
In config.h: ...
#ifndef CONFIG_H #define CONFIG_H extern int count; void print_count(void); #endif
In config.h: ...