Answers for "what is subroutine"

14

subroutine

It's basically a piece of code that can be called and activated
at anytime within a large program. Unlike a function, it does
not have to return any data.
Posted by: Guest on June-22-2020
1

what is a subroutine

functions are subroutines, they are equivilant
Posted by: Guest on July-25-2021
0

subroutines

In computer programming, a subroutine is a sequence of program instructions that performs a specific task, packaged as a unit.
Posted by: Guest on September-09-2021
0

Subroutines

Sub RowCount(pRowTable)

    Let RC.Rows = Num(NoOfRows('$(pRowTable)'),'#,##0'); 

    Trace ---------------- $(pRowTable): $(RC.Rows) rows;

    RC.Rows=;

End Sub; 


Fact:
Load
    Rand() as Random
AutoGenerate
    (1000);

Temp:
Load
    Chr(IterNo()) as Char
AutoGenerate
    (1)
While
    IterNo() <= 2;
    
Outer Join(Fact)
Load
    Char
Resident
    Temp;
    
Drop Table Temp;


CALL RowCount('Fact');
Posted by: Guest on May-25-2021

Browse Popular Code Answers by Language