View Code of Problem 26

#include <stdio.h>

int trans(int F)
{
  	scanf("%d",&F);
 	float C=5/9(F-32);
  	printf("C=%2f",C);
  	return 0;
  	

}
/*
Main.c: In function 'trans':
Main.c:6:13: error: called object is not a function or function pointer
   float C=5/9(F-32);
             ^
*/

Double click to view unformatted code.


Back to problem 26