gnucobol-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[open-cobol-list] Re: INITIALIZE Question


From: Guenter . Sandner
Subject: [open-cobol-list] Re: INITIALIZE Question
Date: Thu Jun 2 23:43:02 2005

Hi all!

This statement has been compiled to do nothing:

[code]
         INITIALIZE RED-MEM-RECORD.
[/code]

generated c-code (nothing will be done):

[code]
  /* cobinit.cbl:27: INITIALIZE */
  {
  }
[/code]

[code]
INITIALIZE MEM-LAST-I.
[/code]

generated c-code:

[code]
  /* cobinit.cbl:29: INITIALIZE */
  {
    memset (b_5, 0, 2);
  }
[/code]

Kind regards
Guenter




reply via email to

[Prev in Thread] Current Thread [Next in Thread]