Temp conversion

int main{
int f=0;
int c;
while(f<=100)
{
c=(5*(f–32))/9;
cout<<f<<" "<<c<<endl;
f=f+20;
}
return 0; }
i am getting null character s ignored error in my code

Hey @lovely please share your code using ide.codingblocks.com
If you don’t know how to share it using ide.codingblocks.com you can ask me that also.

hello @mr.encoder see this .


Happy Learning !!