In Visual Basic , a subroutine can be called in two ways .For example ,
If abc is a subroutine which takes an integer as a value then it can be called in both of the following ways :
call abc(i) and
abc i.
If both achieve the same output then why do we have two different ways to call the subroutine ,I guess there must be some difference in the internal way they are executed or something in terms of compilation .
Are there any other such languages with feature like this , in a general case what is the difference between these two ways in all such languages ?