Skip to main content

Variable In C

Variable

Like any other programming language in C programming language, we use a variable to store value, a value is any data like a number a or a character. In this post, we will learn about datatype of C programming language.

Type Of Variable In C

In this section, we will discuss how to store the following type of variable in C
  • How to store an integer in C?
  • How to store a float in C?
  • How to store a double in C?
  • How to store a long in C?
  • How to store a character in C?
As we already discussed that variable used to store data so that we can use it of other computation, for example, suppose we want to calculate the sum of two number then we have to store these two numbers first only after that we can use these two stored value to compute the sum. The entity that used to store a value called variable. What does it mean is suppose we tell a variable to store a number whose value is 5, the variable will place this number 5 in memory and we can variable instead of the number itself for computation. Let's understand this by our sum example

Calculate the sum of numbers 5 and 10?
One easy thing we can do is 5 + 10 and this will work but now if someone will ask you to calculate the multiplication of those numbers (5, 10). This there is a problem in calculating multiplication because the user is not providing number explicitly but saying to use the previous number that I had given. As a human, we know what was previous numbers because we have a brain and somehow these numbers stored in brain memory but a computer does not have a brain so we have to store these number in the computer memory. 

Again we will do the same problem Calculate the sum of numbers 5 and 10? this time we will use variable
First, we will store the first number in a variable let say first_number = 5
Now we will store the second number in another variable let say seconde_number = 10
then Calculate sum, 
Again We will store Sum in a variable lets called this sum so 
sum = first_number + second_number is same as 15 = 10 + 5 but now we have these numbers (5, 10, 15) are stored in variables(first_number, srecond_number, sum) we can these variable of other computation like calculate multiplication
multiplication = first_number x second_number

Declare Variable in C

In this section, we learn actual semantic that how to declare a variable in c programming language. In C programming, every variable has a data type that tells us what type of value a variable can store. So lets a very simple syntax to declare a variable is
DATA-TYPE VARIABLE-NAME;
here DATA-TYPE is data-type of the variable(int, char, float, double etc) a and variable name can be anything (var, var1, yourname, your_name etc).

How to store an integer in C?

We use keyword int to store an integer variable. you can declare a variable number that can store integer like
 #include <stdio.h>  
 int main()  
 {    
   int number;  
   return 0;  
 }  

Store a value 5 in the above variable. Change the above code like below in order to store the value in the variable
 #include <stdio.h>  
 int main()  
 {    
   int number;  
   number = 5;  
   return 0;  
 }  
You can declare a variable store value at a time like
 #include <stdio.h>  
 int main()  
 {    
   int number = 5;  
   return 0;  
 }  

How to store a float in C?

We use keyword float to store a float variable. you can declare a variable number that can store integer like
 #include <stdio.h>  
 int main()  
 {    
   float number;  
   return 0;  
 }  

Store a value 2.5 in the above variable. Change the above code like below in order to store the value in the variable
 #include <stdio.h>  
 int main()  
 {    
   float number;  
   number = 2.5;  
   return 0;  
 }  
You can declare a variable store value at a time like
 #include <stdio.h>  
 int main()  
 {    
   float number = 2.5;  
   return 0;  
 }  

How to store a double in C?

We use keyword double to store a double variable. you can declare a variable number that can store integer like
 #include <stdio.h>  
 int main()  
 {    
   double number;  
   return 0;  
 }  

Store a value 2.5 in the above variable. Change the above code like below in order to store the value in the variable
 #include <stdio.h>  
 int main()  
 {    
   double number;  
   number = 2.5;  
   return 0;  
 }  
You can declare a variable store value at a time like
 #include <stdio.h>  
 int main()  
 {    
   double number = 2.5;  
   return 0;  
 }  

How to store a long in C?

We use keyword long to store a long variable. you can declare a variable number that can store integer like
 #include <stdio.h>  
 int main()  
 {    
   long number;  
   return 0;  
 }  

Store a value 50000000 in the above variable. Change the above code like below in order to store the value in the variable
 #include <stdio.h>  
 int main()  
 {    
   long number;  
   number = 50000000;  
   return 0;  
 }  
You can declare a variable store value at a time like
 #include <stdio.h>  
 int main()  
 {    
   long number = 50000000;  
   return 0;  
 }  

How to store a character in C?

We use keyword char to store a character variable. you can declare a variable number that can store a character like
 #include <stdio.h>  
 int main()  
 {    
   char chr;  
   return 0;  
 }  

Store a value 5 in the above variable. Change the above code like below in order to store the value in the variable
 #include <stdio.h>  
 int main()  
 {    
   char chr;  
   chr = 'A';  
   return 0;  
 }  
You can declare a variable store value at a time like
 #include <stdio.h>  
 int main()  
 {    
   char chr = 'A';  
   return 0;  
 }  

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Comments

Popular posts from this blog

Clique in Graph

Clique in Graph In this tutorial, we will learn about the clique in the graph theory. Clique In graph theory, a clique is a subset of vertices of an undirected graph such that every two distinct vertices in the clique are adjacent. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Equations

In general we frame real life problems into some mathematical formula called equations in which we use constant and some variables(unknown) Example: Ram is 12 years old.Ram 's age is 3/5 of Shyam's age what is Shyam's age. Let Shyam's age is x then 3/5 of sham's age is 3*x/5 x*3/5=12 x=60/3=20 so Shyam's age is 20. Linear equations When there is a linear combination of unknown variables is there then eqn is linear Example: 3x+ 2y+ 4z=9 Non Linear Equations: Equations in which non linear combination of the variable is there then eqn is non linear. When any 2 unknown variable multiplication present in the equation then it is the nonlinear equation. Example: 2x+5yz=98 is a nonlinear equation because yz multiplication is there: Quadratic equation in one variable: x^2 + 4*x + 2=0 is non linear because unknown variable x is being multiplied in term x^2 Quadratic equation in many variable: x^2 + y^2 +z^2 + w=0 cubic equati...

Practice Problem on Square Measurement

Practice Problem on Square Measurement What is the area of square having side length 5 unit? 25 unit 2     10 unit 25 unit 10 unit 2 What is the  perimeter of a square   having side length 5 unit? 20 unit 20 unit 2 10 unit 10 unit 2 What is the  diagonal  length of a square   having side length 5 unit? 5√2 unit     5√2 unit 2 10 unit 10 unit 2 What is the side length of square having area equal to  25 unit 2  ? 5 unit 5  unit 2 10 unit 10  unit 2 There is a petrol pump in a area having length and width equal to 500 meter. What will be cost to put bricks in the whole area if bricks having length and width equal to 5 cm and cost of 1 bricks is Rs 5? Rs 500000000 Rs 50000000 Rs 5000000 Rs 500000 Related Post:  Square Mensuration Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above. ...

Vertex Cover

Vertex Cover In this tutorial, We will learn about the vertex cover in graph theory. Vertex Cover  A vertex cover of an undirected graph is a subset of its vertices such that for every edge (u, v) of the graph, either u or v is in vertex cover i.e minimum number of vertices that covers all edges of the given graph. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.