What is a variable in c programming

In C programming, a variable is a named storage location in the computer's memory that contains a value that can be accessed and manipulated by the program. Variables have a data type that determines the type of value they can store, such as integers, floating-point numbers, characters, or pointers. Variables are fundamental building blocks of programs and are used to store and manipulate data during program execution.