CH 3. INPUT/OUTPUT INSTRUCTIONS IN C Flashcards
c language uses __ in place of i/o instructions
functions
there are some functions which have became standard for i/o these functions are stored in ___
standard i/o library ie header file
before writing input output instructions every program must include ___
include
state the use of #include in program
the statement will tell the compiler to search for the file, place its contents at the program. the contents of header will now be a part of program.
state the types of i/o in c
console i/o
disk i/o
port i/o
what is console i/o
the input is supplied from keyboard and output is printed on terminal
what is disk i/o
i/o on floppy disks or hard disks ie secondary storage devices
what is port i/o
i/o operations on ports
the function used to input data is ___.
printf
the function used to output data is __
scanf
most of the standard i/o operations are included in ___ file.
stdio.h
console i/o can be ___ and ___
formatted and unformatted
___ i/o allows us to input/display output as per our requirements
formatted
what is formatted i/o?
,
Getch() are used to read characters in ____ input/output
Unformatted
State the use of foll functions:
Getch()
Used in unformatted i/o. Used to read input from terminal without displaying it on screen
State the use of following functions:
Getche
Will read the character typed with echoing(displaying) the enterer character on screen
State the use of foll: getchar()
Used to read unformatted input and the entered characters will rchoe on screen when enter key is typed.
State the use of foll: putch()
Outputs unformatted character on screen
State the use of foll: putchar()
Used to print unformatted output when the variable is hardcored. The syntax is putchar(variable name)
State syntax of foll:
Getchar
Putchar
- Getchar: variable name=getchar();
Putchar: putchar=(variable name);
Character functions are stored in headerfile ___.
State the use of following functions in c:
Isalnum()
Checks whether the character is alphanumeric
State the use of foll functions: isalpha()
To check whether the character is alphabet
State the use of foll functions: isdigit()
Checks whether the character is digit
State the use of foll functions: Islower()
Checks whether the character is lowercase
State the use of foll functions: isprint()
Checks whether the character is printable
State the use of foll functions: isspace()
Checks whether the character is whitespace
Write the function for foll:
- to check whether the character is punctuation mark
- Is a whitespace character
- Is printable character
1 ispunct() 2 isspace() 3 isprint()
Write conversion specifier for the foll datatype:
- Short unsigned int
- Long signed int
- Unsigned hexadecimal
- Unsigned octal
- Double real
- Character unsigned
- String
- %u
- %ld
- %x
- %o
- %lf
- %c
- %s
True/false: escape sequence are also included in format specifiers.
True
Observe the program:
scanf(“%3d%2d”, &a&b);
Input: a=3221,b=20
State/explain the issue in this program.
Here, the width specified is less than the actual input. So, scanf will assign a=322,b=21 and will automatically stop post 1 and will not read b value. In order to avoid such situations one must either mention the accurate field width or just skip the field width.
How much one write a program while reading multiple data items in scanf? What can be the error?
If the datatyoe doesnt match the dataitem scanf will skip reading further input. In order to avoid that…One must seperate the dataitems by spaces, newlines, tabs.
Explain the foll: use of printf in formatted i/o
Use of field width.
If fw>input: leading blanks (right justified)
If input>fw: printed in full fw is overwritten (right justified)
How does one prints output in c with:
Leading 0
Left justification
Right justification
O before fw
“-“ after %
Fw>value
How can we print/read an float value in exponential form?
Syntax:
scanf(“%e”, &variable name);
printf(“%w.pe”,variable name);
State and explain syntax of printf for float
printf(“w.pf”, variable name);
Explain w.pf
%wc is used for ___ in scanf
Characters
State the use of foll:
%[characters]
%[^characters]
- Used by scanf for string.The characters entered in the [ ] are allowed in string. Used to read strings which have blank spaces
- The characters inside the [ ] is not allowed in input string. Scanf will take values except them.
State the conversion specifier in printf for character.
%wc
State the conversion specifier in printf for string
Whats the use of precision?
%w.ps
P specifies first p values would be printed
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
1. use of scanf for formatted int (with width specifier)
attemt ie write program with accurate output
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
2. use of printf for printing value with left justification,right justification and leading with 0
attemt ie write program with accurate output
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
3. scan and print formatted float in exponential form with leading 0, left and right justification.
attemt ie write program with accurate output
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
4. to take character from user and print it in formats.
attemt ie write program with accurate output
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
- to take string from user and :
a. read only lowercase letters.
b. write the input in formats
attemt ie write program with accurate output
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
6. take mixed values from user and print in formats
attemt ie write program with accurate output
WRITE AND EXPLAIN THE PROGRAM FOR FOLL:
- value of a=600, b=65.783, ch=’a’
a. print a in jsutified form
b. leading 0 with precision 4/exponent form
c. with formats
attemt ie write program with accurate output
true/false
scanf returns a int value.
true
true/false
mixed datatypes can be input in any order using scanf
false
true/false
printf can also print mixed datatypes
true
true/false
unformatted i/o is not possible with printf
true
true/false
the variable list has to match the format string in type while using printf
true