InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference In Data Type "x" And "p"? |
|
Answer» In MVS assembler data type X denotes hexadecimal data type which unsigned pack. SUPPOSE you define VAR1 as "VAR1 DC X'01'". It will occupy 1 byte in the memory and stored as:
See following example: VAR2 DC P'1' it will occupy one byte in the memory and stored as '1C'. In MVS assembler data type X denotes hexadecimal data type which unsigned pack. suppose you define VAR1 as "VAR1 DC X'01'". It will occupy 1 byte in the memory and stored as: See following example: VAR2 DC P'1' it will occupy one byte in the memory and stored as '1C'. |
|