-- Example of a WHILE loop that never executes. set serveroutput off;DECLARE c NUMBER := 0; BEGIN DBMS_OUTPUT.PUT_LINE('The value of variable_Calc is ' || c); END; /