fork download
  1. //*******************************************************
  2. //
  3. // Homework: 2
  4. //
  5. // Name: Timothy Stockton
  6. //
  7. // Class: C Programming, Summer 2025
  8. //
  9. // Date: June 3, 2025
  10. //
  11. // Description: Program which determines gross pay
  12. // and outputs are sent to standard output (the screen).
  13. //
  14. //********************************************************
  15.  
  16. #include <stdio.h>
  17. int main ( )
  18. {
  19. int clockNumber; // employee clock number
  20. float grossPay; // gross pay for week (wage * hours)
  21. float hours; // number of hours worked per week
  22. float wageRate; // hourly wage
  23.  
  24. int i; // loop index
  25. int n; // loop test
  26.  
  27. printf (! ( 4 && 5 ));
  28.  
  29. return (0); // success
  30.  
  31. } // main
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty