what is variables in C
Answers
Answered by
2
variables in c are
char , int , short , long or long long .
HOPE IT HELPS YOU MATE
Answered by
1
Like most programming languages, C is able to use and process named variables and their contents. Variables are simply names used to refer to some location in memory – a location that holds a value with which we are working.
It may help to think of variables as a placeholder for a value. You can think of a variable as being equivalent to its assigned value. So, if you have a variable i that is initialized (set equal) to 4, then it follows that i + 1 will equal 5.
Similar questions