#include <stdio.h> #include <stdlib.h> #include <pthread.h> struct fibo { int limit; int answer; }; int fib(int n); void* runner1(void* arg);