This is function pointer program: demo.c
#include <stdio.h>
#include <math.h>
void tabulate(double (*f)(double), double first, double last, double incr);
int main(void) {
double final, increment, initial;
printf("Enter initial value: ");
scanf("%lf", &initial);
printf("Enter final value: ");
scanf("%lf", &final);
printf("Enter increment: ");
scanf("%lf", &increment);
printf("\n x cos(x)"
"\n ------- -------\n");
tabulate(cos, initial, final, increment);
return 0;
}
void tabulate(double (*f)(double), double first, double last, double incr) {
double x;
int i, num_intervals;
num_intervals = ceil((last - first)/incr);
for(i=0; i<=num_intervals; i++) {
x = first + i * incr;
printf("%10.5f %10.5f\n", x, (*f)(x));
}
}
When I try to run this code, got this message:
/tmp/ccQ4IZeD.o: In function `main':
demo.c:(.text+0x92): undefined reference to `cos'
/tmp/ccQ4IZeD.o: In function `tabulate':
demo.c:(.text+0xe3): undefined reference to `ceil'
collect2: error: ld returned 1 exit status
What does it means, because cos and ceil is <math.h>
file function.
Is this is because of OS (ubuntu 13.10 32-bits), because this program is work on else system.
If it yes, then what solution is to run on my system.