1. Walk-through the sample code.

    01   #include "భవిష్యత్తులో.నేను"
    02   
    03   gadidha_guddu type_square(sankya num);
    04   
    05   START
    06   
    07     sankya a;
    08     a = 5;
    09     type_square(a + 5);
    10     a = a * a;
    11     type_square(a + 75);
    12   
    13   STOP
    14   
    15   gadidha_guddu type_square(sankya num)
    16   {
    17     sankya result;
    18     result = num * num;
    19     type_the_number(result);
    20   }
    21
    
                
    a num result Output