answersLogoWhite

0

What is a variable in C language?

User Avatar

Anonymous

14y ago
Updated: 8/16/2019

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

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

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;


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 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 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.


In c language which variable is not valid?

eg: 7x 9# répa 'quote'


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.


Int a is literal in C language or not?

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


Why c in and c out used in c?

In the programming language C++, cin is used to input the variable and cout is used to print a certain message or result.


What does p equals c means in C language?

is means that the variable p gets the value from variable c assigned to it. So if c = 6 and the program executes p = c p will also be 6 but depending on the kind of variables p and c are it can also be c = "i am c" and than after p = c the value of p will be "i am c"


When would you use a pointer and a reference variable?

pointer: to access data by address reference: there is no reference in C language