खोज…


टिप्पणियों

COBOL SORT स्टेटमेंट का उपयोग वर्किंग स्टोरेज में फाइल और टेबल को सॉर्ट करने के लिए किया जा सकता है।

फ़ाइल को टाइप करें

SORT फ़ाइल सिंटैक्स आरेख

सार तालिका

यहाँ छवि विवरण दर्ज करें

मानक से मानक को छांटना

GCobol* GnuCOBOL SORT verb example using standard in and standard out
       identification division.
       program-id. sorting.

       environment division.
       input-output section.
       file-control.
           select sort-in
               assign keyboard
               organization line sequential.
           select sort-out
               assign display
               organization line sequential.
           select sort-work
               assign "sortwork".

       data division.
       file section.
       fd sort-in.
          01 in-rec        pic x(255).
       fd sort-out.
          01 out-rec       pic x(255).
       sd sort-work.
          01 work-rec      pic x(255).

       procedure division.
       sort sort-work
           ascending key work-rec
           using  sort-in
           giving sort-out.

       goback.
       exit program.
       end program sorting.


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow