#include <stdio.h>

int main(int argc, const char * argv[]) {
    const int integer = 15;
    const float floating = 15.55;
    
}

When we declare constant, the integer or other types will be unchangeable and read-only.