answersLogoWhite

0

What is variable definition in c language?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

variable definition means to declare the variable with its value.

for example:-

int i=10;

this statement is a combination of declaration of integer i and assign its value to it,so it is a definition statement

Note: assigning a value is not essential.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is variable definition in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Int a is literal in C language or not?

int a; -- variable definition"int a" -- string literal


What is the definition of the term C static?

The term C static is a variable within computer programming in particular C Language. When set static the variable inside a function keeps its value between invocations.


What is the user defined function section in C language?

There are no 'sections' in C source, you can define functions anywhere, except inside another function or variable/type definition.


Definition of Solve for Specified Variable?

B=c+d


What is a variable in C language?

variable which is used to specify the values and also we can that values through the variable name


What is puts in c language?

printf("%s",variable);


How you declare a variable in c language?

you have to give a statement in the following syntax datatype variable;


Is c sharp scripting language?

What is a scripting language? If you know the answer to this, then you can determine C# fits to the definition or not.


What is a constant variables in c language?

It are a variable you add modifer 'const' to. It means these variable mustn't be modified.


What is the variable in c language program?

A variable is the name for a place in the computer's memory where you store some data.


What is count in c language?

count is a function that counts the variable name.


Is “C language” case sensitive programminIs “C language” case sensitive programming language If yes why and if no whyg language If yes why and if no why?

C is case sensitive, which means that, for example, $var and $VAR are not the same variable.