Download presentation
Presentation is loading. Please wait.
1
bananas apples peaches pears
2
How to modify a file. You can't! Method 1: Copy and modify.
OLDVERSION.TXT apples peaches pears plums raspberries strawberries tangerines NEWVERSION.TXT bananas
3
Copy input file to an array.
Method 2: Copy input file to an array. theFile.TXT char data[100][80] apples peaches pears plums raspberries strawberries tangerines [0] apples [1] peaches [2] pears [3] plums [4] raspberries [5] strawberries [6] tangerines
4
Close the input file. char data[100][80] data[0] data[1] data[2]
[0] apples [1] peaches [2] pears [3] plums [4] rasberries [5] strawberries [6] tangerines apples peaches pears plums raspberries strawberries tangerines
5
Modify the array. char data[100][80] data[0] data[1] data[2] data[3]
apples peaches pears plums raspberries strawberries tangerines
6
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums raspberries strawberries tangerines
7
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums raspberries strawberries tangerines
8
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums raspberries strawberries tangerines
9
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums rasberries raspberries strawberries tangerines
10
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums raspberries strawberries tangerines
11
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums raspberries strawberries tangerines
12
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples peaches pears plums raspberries strawberries tangerines
13
Modify the array. Add bananas char data[100][80] data[0] data[1]
apples bananas peaches pears plums raspberries strawberries tangerines
14
Modify the array. Remove raspberries char data[100][80] data[0]
apples bananas peaches pears plums raspberries strawberries tangerines
15
Modify the array. Remove raspberries char data[100][80] data[0]
apples bananas peaches pears plums strawberries tangerines
16
Modify the array. Remove raspberries char data[100][80] data[0]
apples bananas peaches pears plums strawberries tangerines
17
Modify the array. char data[100][80] data[0] data[1] data[2] data[3]
apples bananas peaches pears plums strawberries tangerines
18
Open the file for output.
char data[100][80] theFile.TXT data[0] data[1] data[2] data[3] data[4] data[5] data[6] data[7] data[8] apples bananas peaches pears plums strawberries tangerines
19
Copy array to file. char data[100][80] theFile.TXT data[0] data[1]
apples bananas peaches pears plums strawberries tangerines apples bananas peaches pears plums strawberries tangerines
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.