My compiler fails to build this code correctly; I can't see an issue. Can someone help me debug it?
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main (int nNumberofArgs, char* pszArgs[])
{
//Enter temperature in Celsius
int celsius;
cout << "Enter the temperature in degrees Celsius";
cin >> celsius;
//convert Celsius into Fahrenheit
int fahrenheit;
fahrenheit = celsius * 9/5 + 32;
//display result and line break
cout << "Fahrenheit value is: ";
cout << fahrenheit ;
return 0;
}