C   35
const
Guest on 11th February 2023 01:20:58 PM


  1. #include <stdio.h>
  2.  
  3. const float pi = 3.14;
  4.  
  5. int main(void) {
  6.     pi = 3.12;
  7.     printf("circumference is %f\n", 2 * pi * 3);
  8.     return 0;
  9. }

Raw Paste

Login or Register to edit or fork this paste. It's free.