assign – POFTUT

Php – Operators

[rps-include post=6522] We have almost learned the variables and related types. But just variables do not enough to create useful applications. We generally need to operate over these variables and data. Operators are a way to operate on variable and data. For example if we need to sum two integer variables we should use sum … Read more

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