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

SSC Practice Problem Solution

SSC Practice Problem Solution In this post, we will discuss solution of  SSC Practice Problem . Question 1  The efficiency of (A + B) = 100/24 = (25/6)% The efficiency of (A + B + C) = 100/8 = (25/2)% The efficiency of C = 25/2 – 25/6 = (50/6)% Hence, C can alone finish this job in = 100/(50/6) = 12 days Answer: 12 days option (1) Question 2  Original price = Rs. 6000; Price after discount = 6000 – 1200 = Rs. 4800; Price after raising service contract = 4800 + 480 = Rs. 5280 Answer: Rs. 5280 option (2) Question 3  Suppose the received money by A, B, and C is respectively 5x, 6x, and 9x. 5x = 450; => x = 90; Hence, the total money = 20x = 20*90 = Rs. 1800; Answer: Rs. 1800 option (2) Question 4 Suppose the Cost price of the bag= Rs. x; Hence, x + 0.15x = 230; => x = Rs. 200; Selling price after selling on 20% = 200 + 20% of 200 = Rs. 240 Answer: Rs. 240 option (3) Question 5  The required percentage ...

Average

Average In this post, We will learn about average.  Average of any collection of data is the sum of data divide by number of data. Average = (Sum of observations /  Number of observations) Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.  problems The arithmetic mean of x, y and z is 80, and that of x, y, z, u and v is 75, where u=(x+y)/2 and v=(y+z)/2. If x ≥ z, then the minimum possible value of x is (CAT 2018) As specified in the question mean of x and y and z is 80 x+y+z=3*80 mean of x, y, z,u,v is 75 x+y+z+u+v=75*5 2u=x+y 2v=y+z x+y+z+((x+y+y+z)/2)=75*5 y+3(x+y+z)=75*10 y=750-720 y=30 since x+y+z=240 y=30 so x+z=210 since x>=z so minimum value of x=210/2 = 105 Problem2: In first 5 inings sehwag has scored at average of 40. In sixth ining He had scored 52 what is His average after 6th ining. one simple approach is getting total score divided by no of inin...

Complex Number

Complex Number While solving the equation of the form  a x 2 + b x + c = 0 , the roots of the equations can take three forms which are as follows: Two Distinct Real Roots Similar Root No Real roots (Complex Roots) The introduction of complex numbers in the 16th century made it possible to solve the equation  x 2 + 1 = 0 . The roots of the equation are of the form  x = ± − 1 ‾ ‾ ‾ √  and no real roots exist. Thus, with the introduction of complex numbers, we have Imaginary roots. We denote  − 1 ‾ ‾ ‾ √  with the symbol i, where i denotes Iota (Imaginary number). An equation of the form z= a+ib, where a and b are real numbers, is defined to be a complex number. The real part is denoted by Re z = a and the imaginary part is denoted by Im z = b. Algebraic Operation on Complex numbers: Addition of two complex numbers Subtraction of two complex number Multiplication of two complex number Division of two complex number Power of Iota (i) ...

Logarithm

Logarithm When a x   = N , then we say that x = logarithm of N to the base a and write it as x = log a N . In simple words, it represents the power to which a number must be raised. Let me expand on that by giving a simpler example. If we are asked, what would be the result if ‘a’ is multiplied with itself ‘b’ times; then your answer would be x = a*a*a*…. b (times). This can also be written as a^b. This is also known as ‘a raised to the power of b’ If we are asked, which number multiplied with itself ‘b’ times, will result in a; then you are asked for the value of x such that x*x*x*… b(times) = a => x^b = a => x = a^(1/b) This is also known as ‘bth root of a’ If swe are asked, how many times should you multiply ‘a’ with itself to get ‘b’, that is where the concept of logarithm comes into the picture. You are asked for the value of ‘x’ such that a*a*a…. x (times) = b => x = Log  a  b This is also known as ‘ Log b to the base a’ ...