xxxxxxxxxx
#include <stdio.h>
int main()/*from w ww .j a va2 s . c o m*/
{
const int x = 20;
const float PI = 3.14;
printf("\nConstant values are %d and %.2f\n", x, PI);
}
xxxxxxxxxx
#include <stdio.h>
int main()/*from w ww .j a va2 s . c o m*/
{
const int x = 20;
const float PI = 3.14;
printf("\nConstant values are %d and %.2f\n", x, PI);
}