Operating Systems Lab Manual / OS Sequential File Allocation Strategy

Program Name Write a program for sequential file allocation strategy.
Theory
 In sequential file allocation strategy data is arranged sequentially in the file.
Program
Input
 Enter the starting block & length of file: 4 10
Output
4->1
5->1
6->1
7->1
8->1
9->1
10->1
11->1
12->1
13->1
 the file is allocated to disk
 if u want to enter more files?(y-1/n-0)n
 


Home     Back