assignment – POFTUT

C Operators – Logical, Arithmetic, Relational

[rps-include post=6557] Operators are leg and arm of the C programming language. A lot of operations done with operators. Operators used to assign, sum, subtract, multiply, divide, remainder, increment, decrement … operations. We will look all of these operations in this chapter. Operators can be grouped like below. Arithmetic Relational Logical Bitwise Assignment Misc Arithmetic … Read more

C Variables and Definition

[rps-include post=6557] Most important function is storing data while the application running. The data may be  age, username, picture, full name etc. To hold data variables are used. Variables are stored in the memory. After application run all variables are cleaned. So variables do not persists between application runs. As variables stored in memory they … Read more

Linux Bash Operators Like Assignment, Plus, Calculation

[rps-include post=6835] We can store different type of values in the variables. But just storing values is generally not enough and we need to make some operations with them. In this tutorial we will look different type of operators which will work with variables. Assignment The most used operator and generally underestimated its power. Variable … Read more

Python Variables and Types

Python programming language provides different data types in order to use data in applications. We generally use variables in order to store our data. As the name suggests variables can be changed during their lifetime. In this tutorial we will look different features and options of Python variables. Create and Assign Value To Variable Assigning … Read more