What is the correct way to declare a constant in C?

Explanation:

const int a = 10; declares a constant integer in C.