Jarfi
- 384
- 12
Talking about banks, credit cards, card swipes, ATM machines...stocks/wallstreet all that stuff, is it C/C++ that is generally used?
rcgldr said:For banking like operations, it used to be Cobol and in the case of IBM mainframes with some assembly code (a long time ago, some of the database access methods were assembly macros). Some financial institutions are required to use decimal based math, and Cobol includes native support for decimal based math.
It's been around forever (i.e., since 1959). Grace Hopper was instrumental in the development of this language.Jarfi said:Ah, never even heard of COBOL before, thanks
Jarfi said:Talking about banks, credit cards, card swipes, ATM machines...stocks/wallstreet all that stuff, is it C/C++ that is generally used?
rcgldr said:Cobol includes native support for decimal based math
jtbell said:This includes storing numbers as binary coded decimal, i.e. a separate group of bits for each decimal digit. To save memory space, many COBOL programs written before the turn of the century stored year values as two digits, with an implicit preceding '19'. This was the infamous "Y2K bug" which created a lot of temporary work for COBOL programmers just before the year 2000.
http://en.wikipedia.org/wiki/Year_2000_problem