trevor.lazarus@ssa.gov
01-01-1995, 02:00 AM
How do you change the value of the whole array during a debug session? Here's the definition of the array in C char side_info7; if I use the following: > EVAL *side_info = 'CICSMT1' it produces: *side_info = 'CICSMT1' = 'C' and only the first element is changed. the following: > EVAL side_info0 ='C' > EVAL side_info1 ='I' > EVAL side_info2 ='C' > EVAL side_info3 ='S' gets rather laborious. I want to change the whole thing with one expression. Trevor