IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

ZEROS and ZEROES in COBOL.


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
shobha acharya

New User


Joined: 29 Jul 2010
Posts: 1
Location: Bangalore

PostPosted: Thu Jul 29, 2010 1:53 pm
Reply with quote

Could anyone explain the difference between ZEROS and ZEROES in COBOL?
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Thu Jul 29, 2010 2:26 pm
Reply with quote

No difference, simply synonyms, as you can see in the fine manual.

Quote:
Figurative constants are reserved words that name and refer to specific constant values. The reserved words for figurative constants and their meanings are:

ZERO/ZEROS/ZEROES
Represents the numeric value zero (0), or one or more occurrences of the character zero (0), depending on context.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Thu Jul 29, 2010 4:24 pm
Reply with quote

The E?
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Thu Jul 29, 2010 5:09 pm
Reply with quote

This also applies to the other figurative constants, such as LOW-VALUE/LOW-VALUES, SPACE/SPACES, HIGH-VALUE/HIGH-VALUES, etc.

Usage of a literal as opposed to its figurative constant can cause unexpected differences. EG:

Code:

03  WS-FIELD PIC  X(256).

MOVE '0'  TO WS-FIELD.
MOVE ZERO TO WS-FIELD.

In the first MOVE, WS-FIELD's first-byte will contain a '0', followed by 255 spaces, whereas, in the second MOVE, WS-FIELD will contain ALL '0's.

The motto here is to always use the figurative constant associated with the field's data-type and the compiler will take care of the rest.

Bill
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top