QBasic programs collection-Especially for SEE (Grade-10)
QBasic Datafile programming of questions asked in 2080
QBasic program read the contents of datafile and display on screen SEE 2080 B.S.
Open "emp.dat" For Input As #12
While Not EOF(12)
Input #12, name$, address$, gender$, salary
If salary > 60000 Then
Print name$, address4, gender$, salary
End If
Wend
Close #12
End