1 #include <stdio.h> 2 #include "bar.h" 3 main(void)4 int main(void) 5 { 6 printf("The answer is %d\n", bar()); 7 return 0; 8 } 9