Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

coding in c: not sure what sequential tape reading is or how to do it. Please run the following program. Use sequential tape reading analogy,

coding in c: not sure what sequential tape reading is or how to do it.

Please run the following program. Use sequential tape reading analogy, please draw sequntial tape values and current head positions on the tape to explain the results of print-out.

 #include typedef struct {int x; char v;} rec_t; 
 int main() { int c; 
 FILE *fp; rec_t my; 
 fp=fopen("test.bin","wb"); for ( c=1; c <= 10; c++) { 
 my.x= c; my.v= c+64; 
 fwrite(&my, sizeof(rec_t), 1, fp); } 

printf("(%d %d), ", sizeof(rec_t), sizeof(my.x)); //______________ fclose(fp);

fp=fopen("test.bin", "rb"); c = 3; fseek(fp, sizeof(rec_t)*c, SEEK_SET); fread(&my, sizeof(rec_t), 1, fp); printf("(%d %c), ", my.x, my.v); //_______________________________

c = 2; fseek(fp, sizeof(rec_t)*c, SEEK_CUR); fread(&my, sizeof(rec_t), 1, fp); printf("(%d %c), ", my.x, my.v); //_______________________________

c = -1; fseek(fp, sizeof(rec_t)*c, SEEK_END); fread(&my, sizeof(rec_t), 1, fp); printf("(%d %c), ", my.x, my.v); //_______________________________

rewind(fp); fread(&my, sizeof(rec_t), 1, fp); printf("(%d %c), ", my.x, my.v); //_______________________________

fclose(fp);

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 19 21 2012 Proceedings Part 3 Lnai 7198

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284922, 978-3642284922

More Books

Students also viewed these Databases questions