1 // Compile this with: 2 // gcc -g -o test7-fn-changed-app -L. -ltest7-fn-changed-libapp-v0 test7-fn-changed-app.c 3 4 #include <stdio.h> 5 #include "test7-fn-changed-libapp-v0.h" 6 main()7int main() 8 { 9 struct Student s = {7, "foo"}; 10 float a = 3.5, b = 2.0; 11 printf ("Addition of a and b = %f\n",add(a,b)); 12 print(s); 13 14 return 0; 15 } 16