answersLogoWhite

0

What is the variable in c language program?

Updated: 8/17/2019
User Avatar

Wiki User

12y ago

Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

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

Write a program in c language to implement framing methods like character stuffing?

A program in c language to implement framing methods like character stuffing can be grave sizeCRC-32 and the variable c50.


What computer language do you use to do robotics?

The language us variable. C++ is common. But having software to manipulate the robotics is common. Are you wanting to create your own program or...?


Different parts of c language program?

what are the parts of C language program


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"


What has the author David Spuler written?

David Spuler has written: 'Comprehensive C' -- subject(s): C (Computer program language) 'C++ and C efficiency' -- subject(s): C++ (Computer program language), C (Computer program language)


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;


When you declare an variable in c language where it will be stored in the computer?

Nowhere, variables exist only during the program run. If you want permanent storage, use files.


Program for sin series in c language?

find the program in c-pgms.blogspot.com


C program was introduced in the year?

c program was introduced in the year 1972 by Dennis RitchieNo, it was the C language, not the C program.


What are c storage classes?

storage classes determines the part of memory where storage is allocated for an object. a scope specifies the part of the program which a variable name is visible, that is accessibility of the variable by its name. in c language there are four storage classes automatic, external, register, static.