answersLogoWhite

0

What are variables in C?

User Avatar

Anonymous

13y ago
Updated: 8/18/2019

variable is must start with letter or ( _ ) under score

ex : int a;

means a is a variable

we can store value on it

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What variables in turbo C?

There are mainly 3 types of variables in c. Integer, Float and character :)


What is A C in math?

A and C are both variables.


What is turbo c variables?

Turbo C variables are memory place holders for storage of data during the execution of a Turbo C program. Types of variables include integer, real and char.


Are C variables initialized to 0 by default?

Only global/static variables are, local variables aren't.


What does a b and c mean in math?

A,b,c are variables. They usually refer to the sides of a triangle, but also can mean just normal variables.


Where local variables are stored in c?

On the stack.


What is 5d plus 2c in variables?

The expression is 5d+2c and the unknown variables are d and c


When an array is declared does c automatically initializes its elements to zero?

For global/static variables: yes.For auto variables: no.


What is The sum of a and c as an expression?

The sum of ( a ) and ( c ) can be expressed simply as ( a + c ). This notation represents the addition of the two variables ( a ) and ( c ) together.


What are the differences between global variables and local variables in C plus plus?

Global variables can be seen in all blocks of your program, when local variables are visible only within the block where it's declared.


How we can get address of variables in Java as pointer variables in C?

At any given point of time you cann't get the address of a variables of java program. This is meant for security purpose only.


What is Advantages of register variables in C?

Faster execution of code.