Sum of Array - Rpg Typing CST Test
Loading…
Sum of Array — Rpg Code
Calculates the sum of an array.
D ARR S 5I 0 DIM(5) INZ(1:2:3:4:5)
D SUM S 10I 0 INZ(0)
D I S 5I 0
C *ENTRY PLIST
C PARM
C FOR I = 1 TO 5
C SUM += ARR(I)
C ENDFOR
C WRITE SUMRpg Language Guide
RPG (Report Program Generator) is a high-level programming language primarily used for business applications, especially on IBM midrange systems like AS/400 and IBM i, for generating reports and handling data processing tasks.
Primary Use Cases
- ▸Generating business reports
- ▸Batch data processing
- ▸Financial calculations
- ▸Inventory and logistics management
- ▸Legacy enterprise application maintenance
Notable Features
- ▸Column-based fixed format (original RPG)
- ▸Integrated file handling for database records
- ▸Procedural and calculation-oriented
- ▸Evolved into free-format RPG IV
- ▸Strong IBM i ecosystem support
Origin & Creator
Developed in 1959 by IBM, originally for IBM 1401 systems; evolved into RPG IV on IBM i platforms.
Industrial Note
RPG powers many legacy enterprise applications in banks, manufacturing, and government systems, often running critical business processes on IBM i (AS/400) systems.