CS计算机代考程序代写 oooo oooo oooo 0000 0000 00000101

oooo oooo oooo 0000 0000 00000101
0011 0101
Flip over the page for another question.
char ch = ’5’;
fprintf(fp, “%c”, ch);
int i = 5;
int i = 5;
fprintf(fp, “%d”, i);
int i = 5;
fwrite(&i, sizeof(int), 1, fp);
char ch = ’5’;
fwrite(&ch, sizeof(char), 1, fp);
010110101
ooo oooo oooo oooo 0000000000000101
00110101
oooo
CSC209H Worksheet: Binary I/O and Binary Files
Consider the following C statement: char ch = ’A’; One byte of memory is allocated for the variable ch and in the first row of table below we see that the bits are set to 01000001. This is the 65, the ASCII code for the letter ‘A’. (Aside: We don’t expect you to memorize any ASCII codes. You can look them up in this table http://www.ascii-code.com.) Hint for the table: the ASCII code for ‘5’ is 53, in decimal.
Notice in the second row that when we use fprintf to print a string containing the uppercase A to a file, one byte is written to the file. Again it is the ASCII code for A.
Complete the rest of the table showing for each statement what is saved in memory and what is written to the file. (When you get to the point of storing integers don’t stress about the actual 2’s complement details that you might be learning in CSC258 – just make sure you know the di↵erence between storing the sizeof(int) bytes in binary vs. the ASCII representation for each digit.)
What’s written to the file?
(show the bits) N/A
01000001
0100 0001 0011 010
0011010 I
00110701
Code What’s in the Memory?
(show the bits) charch=’A’; 01000001
fprintf(fp, “A”);
char ch = ’A’;
fprintf(fp, “%c”, ch);
N/A
fprintf(fp, “5”);
ASCII 0
53 35
100
0001

CSC209H Worksheet: Binary I/O and Binary Files
You should have noticed that more bytes are written for the int i than just a single character. Is this always the case? Identify (with justification) the range of integers i such that:
(a) more bytes are required to store i in binary – using fwrite(&i, sizeof(int), 1, fp) – than in text – using fprintf(fp, “%d”, i). 40 911
(b) the same number of bytes are required to store i in binary and in text. (c) fewer bytes are required to store i in binary than in text.
710000
1000
9999

P2
28 28
255
of
EEE
004177
10