Basic Programming Terminology
वैरिएबल (Variable)
परिभाषा: एक ऐसा स्थान (Memory Block) होता है जहाँ कोई डेटा स्टोर किया जाता है।
उदाहरण: x = 10
(यहाँ x
एक वैरिएबल है जिसमें 10 स्टोर है।)
Example in c programming
is
void main()
{
int x;
x = 12;
}
int this example int x statement create a memory block of 2 byte space with the name x in which we
store 12 that are accessible
कोई टिप्पणी नहीं:
एक टिप्पणी भेजें