Wat is the difference between NEXT and CONTINUE statement in
cobol,can any one explain with example.
Answer Posted / ankur kar
the following code explains u clearly
If A>B
next sentence
end-if
display 1
display 2.
display 3.
it will display only 3. if a>b
if a>b
continue
end-if
display 1
display 2.
display 3.
it will display 1 2 3. if a>b. let me know if it is not
correct.
| Is This Answer Correct ? | 97 Yes | 16 No |
Post New Answer View All Answers
Which mode is used to operate the sequential file?
How do u write test cases?
What is the difference between structured cobol programming and object alternativelyiented cobol?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
What is perform what is varying?
how to access the file from prodution from changeman tool and to submit a file to production
Discuss about changing dataset name in proc.
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
State the various causes of s0c1, s0c5 and s0c7.
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Name the divisions, which are available in a cobol program?
What is length is cobol?
What is cobol?
i want a program using by if, evaluate , string, unstring, perform, occurs?
What is the difference between PIC 9.99 and 9v99 in COBOL?