#ifndef __create_table_h__ #define __create_table_h__ /******************************** *create_table.h is a header file* *for create_table.c, which * *takes the data provided by * * get_input_one, * * get_input_one_increment, * * get_input_two, * * get_input_two_increment, * * and get_increment_length, * *performs basic_function on each* *pair of numbers, and writes the* * data into a text file. * ********************************/ #include #include #include "basic_function.h" using namespace std; int create_table(double input_one, double input_two, double input_one_increment, double input_two_increment, int increment_length); #endif