// fahrenheit <-> Celcius #include #include #define COLD 0 #define HOT 100 using namespace std; void hotcold(int);// anagnwrizei shmeia phkshs kai thkshs int CtoF(int);// celcius -> farenheit int main(int argc, char *argv[]) { int count; int fahrenheit; int celcius; cout<<"Table celius - farenheit\n"; for (count=-4; count<=12; count=count+1) {celcius = 10 * count; fahrenheit = CtoF(celcius); cout<<" C = "<