Please help me find the error in the code below. The error msg is:
error: stray '/327' in program
In function 'float convert(float)':
error: expected ';' before 'Celsius'
#include <iostream>
float convert(float);
int main()
{
using namespace std;
float Celsius;
cout << "Please enter a Celsius value: ";
cin >> Celsius;
cout << Celsius << " degrees Celsius is: " << convert(Celsius) << " degrees Fahrenheit";