Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
C
35
const
Guest on 11th February 2023 01:20:58 PM
#include <stdio.h>
const
float
pi
=
3.14
;
int
main
(
void
)
{
pi
=
3.12
;
printf
(
"circumference is %f
\n
"
,
2
*
pi
*
3
)
;
return
0
;
}
Raw Paste
#include <stdio.h> const float pi = 3.14; int main(void) { pi = 3.12; printf("circumference is %f\n", 2 * pi * 3); return 0; }
Login
or
Register
to edit or fork this paste. It's free.