QBasic programs collection-Especially for SEE (Grade-10)
QBasic program to know the output of program using dry run table- to find the greater number, using sub procedure
declare sub pabson(A,b)
Cls
x = 15
y = 10
Call pabson(x, y)
Call pabson(3, 6)
End
Sub pabson (a, b)
If a < b Then
Print a
Else
Print b
End If
End Sub