nord vpnnord vpn
Ad

(C) Exemplo - Constante - Const

 avatar
auryan
c_cpp
a year ago
125 B
1
Indexable
Never
#include <stdio.h>

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

nord vpnnord vpn
Ad