vote up 37 vote down star
2

why are we using

for (int i = 0 ; i < count ; i++){ }

why the i

why not

for (int a = 0; a < count; a++){ }

I do it, you do it, everyone does it but WHY?

*edit

I found out an old saying about FORTRAN which is more funny than correct which says "god is real, everything else above is an integer".

"god" would be a variable name stating with a g so it would be in the real domain, while everything else above (excluding h for the joke's purpose) would be an integer

It seems that the original saying was in fact : "God is real, unless declared integer". Apologies to everyone citing me in their phd thesis

flag

71% accept rate
2  
"God is real, unless declared integer" – Andreas Grech Aug 8 at 10:04

15 Answers

vote up 87 vote down check

i = integer

Comes from Fortran where integer variables had to start with the letters I through N and real variables started with the other letters. Thus I was the first and shortest integer variable name. Fortran was one of the earliest programming languages in widespread use and the habits developed by programmers using it carried over to other languages.

EDIT: I have no problem with the answer that it derives from mathematics. Undoubtedly that is where the Fortran designers got their inspiration. The fact is, for me anyway, when I started to program in Fortran we used I, J, K, ... for loop counters because they were short and the first legally allowed variable names for integers. As a sophomore in H.S. I had probably heard of Descartes (and a very few others), but made very little connection to mathematics when programming. In fact, the first course I took was called "Fortran for Business" and was taught not by the math faculty, but the business/econ faculty.

For me, at least, the naming of variables had little to do with mathematics, but everything due to the habits I picked up writing Fortran code that I carried into other languages.

link|flag
1  
I'm pretty sure it was FORTRAN. – Cade Roux Jan 17 at 23:43
1  
Ya, fortran..... It rots the mind. We have a programmer that uses i ii and iii as loop variable names. The other symptom is 6 character variable/function names with no vowels. – EvilTeach Jan 17 at 23:54
4  
Hey, the FORTRAN guys got it off the mathematicians! – timday Jan 18 at 0:10
1  
I love historical artifacts like this. It adds depth to programming, and makes me feel connected to the past. – OrbMan Jan 18 at 1:48
4  
I agree with @timday. Using i as an index of a series has been a practice by mathematicians for at least 2 centuries. – Scottie T Jun 2 at 13:06
show 7 more comments
vote up 124 vote down

Mathematicians were using i,j,k to designate integers in algebra (subscripts, series, summations etc) long before (e.g 1836 or 1816) computers were around (this is the origin of the FORTRAN variable type defaults). The habit of using letters from the end of the alphabet (...,x,y,z) for unknown variables and from the beginning (a,b,c...) for constants is generally attributed to Rene Descartes, (see also here) so I assume i,j,k...n (in the middle of the alphabet) for integers is likely due to him too.

link|flag
9  
To me, this is clearly the best answer. (Honorable mention for Michael Borgwardt's answer, which also cites mathematical convention but isn't as specific.) I'm sorry yours isn't the accepted one. All I can do is give it my upvote. – John Y Jun 2 at 2:12
3  
This is exactly the reason that the we need to be able to vote for a community accepted answer (and yeah I know this belongs on uservoice). – Lucas McCoy Jun 18 at 3:31
Heh. I occasionally update the link to an old google book in this answer because google keeps chopping stuff around. By chance, I note the 1816 document now linked includes Charles Babbage (presumably he of difference engine/analytical engine fame) as an author. So arguably it's an example of the first use of an integer variable "i" by a computer programmer :^) – timday Jul 1 at 12:57
..OK the 1816 link doesn't go to page with "i" used on it, but they're there. – timday Jul 1 at 13:00
vote up 45 vote down

I think it's most likely derived from index (in the mathematical sense) - it's used commonly as an index in sums or other set-based operations, and most likely has been used that way since before there were programming languages.

link|flag
Good answer. This (to me) indeed seems like the most probable explanation. – Noldorin Mar 8 at 23:03
2  
Yup. The mathematic notation for a sum like Y = Σ Xi precedes every programming language. – Treb Mar 23 at 0:30
I am thinking of index each time I use i. But originally I use it mainly because all code I look at elsewhere use it, and that may be inherited from Fortran programmers... – awe Sep 10 at 12:26
vote up 12 vote down

Possibly historical ?

FORTRAN, aurguably the first high level language, defined i,j,k,l,m as Integer datatypes by default, and loops could only be controlled by integer variable, the convention continues ?

eg:

do 100 i= j,100,5 .... 100 continue ....

link|flag
FWIW, I usually skip the letter l because it looks too much like the number 1. – Nosredna Feb 2 at 20:00
vote up 5 vote down

It's funny how everyone has a different take on this. I always assumed that it stood for 'index'. The fact that everyone immediately realizes what it means is enough for me.

link|flag
vote up 4 vote down

I use it for a number of reasons.

  • Usually my loops are int based, so you make a complete triangle on the keyboard typing "int i" with the exception of the space I handle with my thumb. This is a very fast sequence to type.

  • The "i" could stand for iterator, integer, increment, or index, each of which makes logical sense.

With my personal uses set aside, the theory of it being derived from FORTRAN is correct, where integer vars used letters I - N.

link|flag
vote up 3 vote down

i = iterator, i = index, i = integer

Which ever you figure "i" stands for it still "fits the bill".

Also, unless you have only a single line of code within that loop, you should probably be naming the iterator/index/integer variable to something more meaningful. Like: employeeIndex

BTW, I usually use "i" in my simple iterator loops; unless of course it contains multiple lines of code.

link|flag
vote up 2 vote down

i = iterator.

link|flag
I would say, i == index. – Frederik Gheysels Jan 17 at 23:38
thats ok I would say i === index so, we'll just agree to disagree. – Unkwntech Jan 18 at 0:38
vote up 2 vote down

Most probably we are using i because we learn to program from examples.

Early examples of for(;;){} loops in C seem to use i as the iteration variable. Checking around the Internet shows this to remain true (see http://en.wikipedia.org/wiki/For_loop).

Once we learn a pattern (i, j, k for nested loops) they become habits and moreover become accepted, even expected, norms for collaboration.

This doesn't make it right or optimal to continue, of course.

link|flag
vote up 2 vote down

We're not. At least not if we're using any sort of decent naming convention.

link|flag
to me, a decent naming convention is something everyone looks at and immediately recognises / is immediately obvious.. i would certainly recognise it quicker as an index variable if i saw i over index, as the single letter variable name is more expressive than any name would be. maybe that's just me though. – tim Jul 30 at 16:44
@tim - it's obvious that it's an index but that's obvious from the fact it's in a for next or while wend loop. what it doesn't tell you is what it refers to - is it the client invoice number? the internal system invoice id? the purchase order id for the PO relating to the invoice? or if you've got a loop within a loop which one is the rows and which one the columns? for the sake of an extra few characters why not have complete clarity? – Jon Hopkins Aug 3 at 10:37
vote up 2 vote down

When I 'learned' BASIC on the BBC and ZX Spectrum the convention was to use 'n'. When I moved to more curly bracket languages the convention shifted to 'i'.

link|flag
The original BASIC manual from 1964 used X. From the late 1970s and early 1980s, I remember a lot of I, J, X, Y, M, N. Every once in awhile you saw an A, A0, AA, but not very often. bitsavers.org/pdf/dartmouth/… – Nosredna Aug 24 at 22:10
vote up 1 vote down

Unless you need to know the specific index in an array... Might aswell use a foreach construct;

foreach $item (@list) { do($item); }

lol perl.

link|flag
vote up 1 vote down

i = index I think, at least that's how I look at it

link|flag
vote up 1 vote down

I'm quite sure that i comes from index (I'm a mathematician, after all).

Actually when I was high-schooler, my loop variables were usually called idx, jdx and kdx.

link|flag
vote up 0 vote down

Because int starts with an i :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.