1 #define DEF 2 #include "header.h" 3 main()4 int main() { 5 f1(); 6 7 int *x; 8 f2(&x); 9 10 float *y; 11 f2(&y); 12 13 return 0; 14 } 15