- Make a program to display records from a file 'std.dat'. File contains name, class and roll no., marks of english and science of a student. (qbasic code)
- CLS
OPEN "std.dat" FOR INPUT AS #1
INPUT #1, n$, cl, r, en, sc
PRINT "Name: "; n$
PRINT "Class: "; cl
PRINT "Roll:"; r
PRINT "Marks In English:"; en
PRINT "Marks In Science:"; sc
CLOSE #1
END