C language console input output formatted unformatted functions

Опубликовано: 08 Апрель 2020
на канале: ProfessorD
70
3

An introduction to the console input output formatted unformatted functions in the C programming language. #professorD.org #ctutorials

formatted input functions in C are:
scanf( )
fscanf ( )
sscanf ( )

formatted output functions in C are:
printf( )
fprintf( )
sprintf( )

unformatted input functions in C are:
getchar( )
getch( )
getche( )
gets( )

unformatted output functions in C are:
putchar( )
putch( )
puts( )