| 1. |
Describe the main features of printf and getchar function. |
|
Answer» printf ( ) → This function writes formatted data to screen. This function allows to supply the input in a fixed format and to obtain the output in the specified form. The printf () function interprets the contents of the format string. Syntax: Printf (“formatted string”, variables); if needed getchar ( ): Using this function any single ASCII character can be inputted in any char type of a variable. This function is available in stdio.h header file so it must be included in the program, in the beginning, using # include declarative. #include<stdio.h> |
|