Created: 2022-08-19
Tags: #fleeting
const?In general, to tell to the program that the VALUE MUST NEVER CHANGE
-> In array, to tell program elements must never change
-> In function args
const?Any declaration of variable
Array,
const char name[] = "Jonathan";
Function Arguments
int hello(const int 50);