|
|
| Author |
Message |
markanthos
New User
Joined: 28 Apr 2005 Posts: 14 Location: India
|
|
|
|
| What is the use of AT END & NOT AT END in a READ FILE command? |
|
| Back to top |
|
 |
References
|
Posted: Thu Apr 28, 2005 11:42 am Post subject: Re: What is the use of AT END & NOT AT END in a READ Command |
 |
|
|
 |
squid_rocks
New User
Joined: 21 Mar 2005 Posts: 15 Location: Pune, INDIA
|
|
|
|
Hi,
The AT END and NOT AT END clause is used with READ command
Plz refer the command below:
READ filename....
AT END
STMT 1
STMT 2
NOT AT END
STMT 1
STMT 2
...
END-READ
at end clause is used to perform some statements or paras when the EOF or end of file occurs.
so goes for not at end
generally at end is used, not at end is not much used, but it can be used all the same.
we can give statements to perform or we can give para names etc
hope it helps |
|
| Back to top |
|
 |
|
|