double not correctly printing
Archiviert 2 years ago
T
Zacco
I just started watching brocode's tutorials, but this code isn't working as intended/as he has shown. I know this is a like a really really dumb and simple question but i can't figure it out.
```c
#include <stdio.h>
int main()
{
double help = 5.202949301920391;
printf("Pi is: %lf", help);
return 0;
}
```

