if you code move high-values to variable,can you move it
into numeric variable or alphanumeric variable?
Re: 01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
how to move the records from file to array table. give with code example
How can we pass data from cobol to JCl?
Differentiate between structured cobol programming and object-oriented cobol programming.
Can we use icetool in cobol program?
What is the different between index and subscript?
what is meant by binary search?
How to find How Many Lines in Sysin DD * Parameter Thru Cobol Coding? If any one knows the Answer Please Reply .....Thanks From Shree
how do you reference the fixed unblock file formats from cobol programs
How to display string in the reverse order using occurs clause?
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest