Presentation is loading. Please wait.

Presentation is loading. Please wait.

Basic I/O in C Computer Organization I 1 August 2009 ©2006-09 McQuain, Feng & Ribbens Stream Model of I/O header file: A stream provides a connection.

Similar presentations


Presentation on theme: "Basic I/O in C Computer Organization I 1 August 2009 ©2006-09 McQuain, Feng & Ribbens Stream Model of I/O header file: A stream provides a connection."— Presentation transcript:

1 Basic I/O in C Computer Organization I 1 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Stream Model of I/O header file: A stream provides a connection between the process that initializes it and an object, such as a file, which may be viewed as a sequence of data. In the simplest view, a stream object is simply a serialized view of that other object. To be, or not to be? That is the question. input file executing process o T be o. r.. We think of data as flowing in the stream to the process, which can remove data from the stream as desired. The data in the stream cannot be lost by “flowing past” before the program has a chance to remove it.

2 Basic I/O in C Computer Organization I 2 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens C FILE Type Accessing a stream requires a pointer of type FILE. C provides three standard streams, which require no special preparation other than the necessary include directive: stdin standard inputkeyboard stdout standard outputconsole window stderr standard errorconsole window Alternatively, you can declare FILE pointers and manage their connections to disk files.

3 Basic I/O in C Computer Organization I 3 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Output with printf() The Standard Library provides the printf() function which can be used to write formatted output to the standard output stream, stdout. int printf(const char * restrict format,...); The first parameter is a string literal that specifies the formatting to be used. The remaining parameters, if any, specify the values to be written. The return value is the number of characters that were written, or a negative value if an error was encountered.

4 Basic I/O in C Computer Organization I 4 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Output Examples The specification of format is mildly complex: int i = 42, j = 17; double x = 3.1415962; printf("i =%3d j =%3d\n", i, j); printf("x =%7.4f\n", x); There is an excellent discussion of the details in section 22.3 of the King book. i = 42 j = 17 x = 3.1416

5 Basic I/O in C Computer Organization I 5 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens More on printf() Format Specifiers The general form of a printf() specifier is: flags:optional, more than one allowed - left-justify within field + always show leading sign spaceprecede non-negative numbers with a space # see reference 0 pad with zeros to fill field %#012.5Lg flags min width precision length modifier conversion specifier

6 Basic I/O in C Computer Organization I 6 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens More on printf() Format Specifiers The general form of a printf() specifier is: min width:optional, pad with spaces if field not filled, ignored if insufficient %#012.5Lg flags min width precision length modifier conversion specifier precision:optional, number of digits for integer values, number of digits after decimal point for float/double

7 Basic I/O in C Computer Organization I 7 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens More on printf() Format Specifiers The general form of a printf() specifier is: length modifier:optional, indicates value has a type that's longer or shorter than is normal for a particular conversion specifier (see following) d normally used for int values u normally used for unsigned int values hd normally used for short int values ld normally used for long int values see reference for more… Table 22.5 %#012.5Lg flags min width precision length modifier conversion specifier

8 Basic I/O in C Computer Organization I 8 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens More on printf() Format Specifiers The general form of a printf() specifier is: conversion specifier:mandatory d, i converts int to decimal form f, F converts double to decimal form; default precison 6 c displays int as unsigned character see reference for more… Table 22.6 %#012.5Lg flags min width precision length modifier conversion specifier

9 Basic I/O in C Computer Organization I 9 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Format Specifiers for The basic integer format codes will work with int32_t and uint32_t (with compiler warnings), but are not reliable with int64_t and uint64_t. The header file provides specialized format codes for the new integer types. Here's a very brief description; see King 27.2 for details. PRIdNfor signed integer types, N = 8, 16, 32, 64 PRIuNfor unsigned integer types For example: uint64_t K = 123456789012345; printf("%15"PRIu64"\n", K); // note use of quotes!!

10 Basic I/O in C Computer Organization I 10 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Input with scanf() The Standard Library provides the scanf() function which can be used to write formatted output to the standard output stream, stdin. int scanf(const char * restrict format,...); The first parameter is a string literal that specifies the formatting expected in the input stream. The remaining parameters, if any, specify the variables that will receive the values that are read. The return value is the number of values that were read, or the value of EOF if an input failure occurs.

11 Basic I/O in C Computer Organization I 11 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Input Examples Suppose we have an input stream of the following form: 17 42 3.14159625 int i = 1, j = 1; double x = 1.5; scanf("%d %d %f", &i, &j, &x); printf("%5d %5d %7.4f\n", i, j, x); 17 42 3.1416 int i = 1, j = 1; double x = 1.5; scanf("%d, %d, %f", &i, &j, &x); printf("%5d %5d %7.4f\n", i, j, x); Suppose we have an input stream of the following form: 17, 42, 3.14159625 17 42 3.1416

12 Basic I/O in C Computer Organization I 12 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens More on scanf() Format Specifiers The general form of a scanf() specifier is: %*12Lg max width length modifier conversion specifier max width:optional, leading whitespace doesn't count * :optional, read but do not assign value to an object

13 Basic I/O in C Computer Organization I 13 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens More on scanf() Format Specifiers The general form of a scanf() specifier is: %*12Lg max width length modifier conversion specifier length modifier:optional, indicates object that will receive value has a type that's longer or shorter than is normal for a particular conversion specifier (see following) see reference for more… Table 22.11 conversion specifier:mandatory see reference for more… Table 22.12

14 Basic I/O in C Computer Organization I 14 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Opening Files File I/O is almost identical to I/O with stdin and stdout. You must make a call in order to associate a FILE pointer with a particular file: FILE *fopen(const char* restrict filename, const char* restrict mode); filename path/name of file to be opened mode"r" "w" "a" "rb" "wb" "ab" "r+" "w+" "a+" see reference for more Return value is valid FILE pointer if successful and NULL otherwise.

15 Basic I/O in C Computer Organization I 15 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens File I/O File I/O is accomplished using variations of printf() and scanf() : int fprintf(FILE * restrict stream, const char * restrict format,...); int fscanf(FILE * restrict stream, const char * restrict format,...); These are used in the same way as their counterparts, aside from taking a FILE*.

16 Basic I/O in C Computer Organization I 16 CS@VT August 2009 ©2006-09 McQuain, Feng & Ribbens Closing Files When done with a file, you should close the file: int fclose(FILE *stream); Any unwritten buffered data will be delivered to the host environment. Any unread buffered data will be discarded. Returns 0 on success and EOF otherwise.


Download ppt "Basic I/O in C Computer Organization I 1 August 2009 ©2006-09 McQuain, Feng & Ribbens Stream Model of I/O header file: A stream provides a connection."

Similar presentations


Ads by Google