fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. float age;
  6.  
  7. age = 10.5;
  8. printf("TechOnTheNet.com is over %f years old.\n", age);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
TechOnTheNet.com is over 10.500000 years old.