In this code sample, what is not a problem for C compiler?
main(){ constant int PI = 3.14; printf("%f\n", pi); }
The data type of PI needs to be float not int.
The value of PI needs to be set to 3.141593, not 3.14
The printf statement needs to use PI, not pi.
The declaration of PI needs to say const, not constant.