const keyword in C

The const keyword is used to define constant in C programming.
```
const float PI=3.14;  
```