View previous topic :: View next topic
|
Author |
Message |
nandinihb
New User
Joined: 10 Dec 2005 Posts: 11 Location: b'lore
|
|
|
|
hi all,
can anybody send me the simple natural/adabas programms.?
thanks |
|
Back to top |
|
 |
rahul_mf Warnings : 1 New User
Joined: 13 Sep 2005 Posts: 13
|
|
|
|
Program for sum of two numbers -->
DEFINE DATA
LOCAL
01 #A (N3)
01 #B (N3)
01 #C (N3)
END-DEFINE
*
WRITE 'ENTER THE VALUE FOR A'
INPUT #A
WRITE 'ENTER THE VALUE FOR B'
INPUT #B
COMPUTE #C = #A + #B
WRITE 'THE VALUE OF C IS' #C
END |
|
Back to top |
|
 |
nandinihb
New User
Joined: 10 Dec 2005 Posts: 11 Location: b'lore
|
|
|
|
hi rahul,
thanks for sending the sample programm.
could u give me the guide lines where i can get the training for natural/adabas?
thanks |
|
Back to top |
|
 |
rahul_mf Warnings : 1 New User
Joined: 13 Sep 2005 Posts: 13
|
|
Back to top |
|
 |
|