(C) Exemplo - Constante - Const

 avatar
auryan
c_cpp
3 years ago
125 B
4
Indexable
#include <stdio.h>

int main()
{
    const double PI = 3.14159265359;
    
    printf("PI = %lf\n", PI);
    
    return 0;
}
Editor is loading...