# obligatory and default
~~~~~~~~~~~~~~~~~~~~~
obligatory --> required filed
default --> takes by default
example prog
----------------
REPORT ZAJAY_PRACTICE.
PARAMETERS: number1 type i OBLIGATORY,number2 type i DEFAULT 50.
data result type i.
result = number1 + number2.
WRITE: 'result is',result.
input
------
10 50
output
--------
result is 60.
Comments
Post a Comment