Constants Variable

#include<stdio.h>
int main()
{
    const int a = 12;
    
    printf("%d\n", a);
    
    return 0;
}

Comments