Not Just Paranoid

Another site by Pete Maynard

Programming Variables Very Basic

A variable is data that is stored in the computers memory. A variable can be a number (Integar, Float) or just one letter or number (Char) or it can be a string of letters or number (String) in some programming languages like Java and C/C++ you need to declare and initialize the variable, this means that you have to say what type it is and what it is called.  With some scripting languages like Python and PHP you don’t have to declare them which means that you don’t have to say what type they are you just give them an name.

**How to declare and initialize in Java: **

int foo;
foo = 15;

String foo1;
foo1 = "String";

**How to declare and initialize in Python: **

foo = 15
foo1 = "String"

This is a very basic introduction, hope this has helped someone.

Tracking GIR!

Tracking GIR!

12 Sep 2008 | Tags ( Programming )

Website Last Updated on 15 Sep 2023 (CC BY-SA 4.0)

This site uses JQuery and nanogallery2 hosted by jsdelivr.net
for the Flickr photo feed and GoatCounter for user insights.