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

SIMPLE PYTHON HTTP SERVER

SIMPLE PYTHON HTTP SERVER In many use cases, we come across the situation where we need a simple server to test some command or test some applications. But creating a server programmatically is a time taking process. To solve the problem Python has created SimpleHTTPServer module. In this post, we will learn how to create a simple HTTP server in a single command on Ubuntu.  Create SimpleHTTPServe Using Commandline  python -m SimpleHTTPServer 8001 Above command will create a simple HTTP server for you at port 8001 Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Golang - Run & Compile

GOLANG RUN & COMPILE In the previous post, we have discussed how to install Go on Linux. In this post, We will discuss how to compile and run a Go program. Create folder HelloWorld mkdir HelloWorld cd HelloWorld Create file HelloWorld.go touch HelloWorld.go Copy below code into HelloWorld.go file package main import "fmt" func main() { fmt.Println("Hello, World") } Compile go build Run ./HelloWorld Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

BSNL Recruitment

BSNL Recruitment      Bharat Sanchar Nigam Limited (BSNL)  has released a notification for the post of   Management Trainees . Company Name BSNL Post Name    Management Trainees State India Salary Rs.  24,900-50,500 Number of Vacancy 300 Eligibility B.Tech Last Date 26-01-2019 Application Details Job Notification Apply Online Job Application BSNL Recruitment       Government Jobs in India Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above. Rozgardesh ( रोजगार देश )

South East Central Railway: SECR

South East Central Railway: SECR Company Name         :  South East Central Railway: SECR Post Name                       :   Apprentice State                            :  Maharashtra Salary                           :  Number of Vacancy   :  313 Eligibility                     :  10th Pass  Last Date to Apply     :  15-09-2018 Application Details    :  Notification Apply Online              :  Apply Here Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.