Z
Zhane
Guest
variable L: Line;
variable Tim: time;
variable Int: integer;
variable cha: character;
variable str : string(1 to 6);
READLINE(F,L);
READ(L, Tim);
READ(L, Int);
READ(L, cha);
READ(L, Str);
READ(L, Int);
for the above code, what will i get if the input file, F has..
100 NS 99 ABCDEF 27
as the input stimuli?
variable Tim: time;
variable Int: integer;
variable cha: character;
variable str : string(1 to 6);
READLINE(F,L);
READ(L, Tim);
READ(L, Int);
READ(L, cha);
READ(L, Str);
READ(L, Int);
for the above code, what will i get if the input file, F has..
100 NS 99 ABCDEF 27
as the input stimuli?