fork download
  1. #include <stdio.h>
  2.  
  3. unsigned char WholeDegrees(int TenthsDeg) {
  4. signed char TempTINT;
  5. TempTINT = (TenthsDeg + 5) / 10;
  6. return TempTINT;
  7. }
  8.  
  9. int main(void) {
  10. unsigned char retVal = 0;
  11. retVal = WholeDegrees(759u);
  12. printf("%d", retVal);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
76