fork download
  1. #include <stdio.h>
  2.  
  3. char main() {
  4. // Define the value of pi
  5. float A;
  6. A = 3;
  7.  
  8. // Number of times to print pi
  9. float n = 3; // You can change this value to print more or fewer times
  10.  
  11. // Loop to print the value of pi
  12. for (float i = 1; i < n;i++);
  13. {
  14. printf("%d",A);
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
1183245304