Q:

What is the variable in C?

0

What is the variable in C?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Answer:

A variable in C defines a location name where you can put value and you can use these values whenever required in the program. In other words, you can say that variable is a name (or identifier) which indicates some physical address in the memory, where data store in the form of bits of the string.

In C language, every variable has a specific data types (pre-defined or user-defined) that determine the size and memory layout of the variable.

Note: Each variable bind with two important properties, scope, and extent.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Using the variable p write down some declaration... >>
<< What is the output of the below C code?...