Write a program to keep track of the batting performance of 5 cricketers who are playing a four match one day series. a) Create the data file shown below using vi editor and save it as scores.txt 78 10 -999 30 81 13 -67 10 6 0 0 -999 -999 -999 56 -78 20 22 -90 5 Note: -999 means "did not bat" Positive number is the score the batsman scored. Eg ; 78 Other negative number is to indicate the batsman was not out Eg : - 67 means the batsman got 67 without getting out b) Write a program to do the following. Save this program as abc04.cpp i) Read the scores.txt file and find how many times the batsman played in the one day series. Write the details in to innings.txt file. Sample output Batsman Inning 1 3 2 ...