C_26 Unformatted Output Functions in C | C Programming Tutorials

preview_player
Показать описание
In this video, We will learn Unformatted Output Functions (putchar(), putch(), puts()) in C Language with programs

*******************************************

Connect & Contact Me:

*********************************************

More Playlists:

#cprogramming #jennyslectures #programming #clanguage #operatorsinc
Рекомендации по теме
Комментарии
Автор

Our college teachers RIP🤣🤣🤣.I m really glad to say that I understand literary every concept which you teach..May almighty god bless you with good health to deliver your knowledge to us🙂😇😇😇😇

codewithcliffton
Автор

Formatted input and output functions contain format specifier in their syntax. Unformatted input and output functions do not contain format specifier in their syntax. They are used for storing data more user friendly. They are used for storing data more compactly

pravinj
Автор

Really amazing teaching. As commented by another friend before, "In the paid version, it's rare to find such a "Crystal clear" version of learning". Great service...

bikashpandey
Автор

puts ( 'a' ); it will give you error but if you put double qoutation puts ( "a" ); it will give you output a

fuadhamedmohamed
Автор

Fallen in love with C Programming and Data Structures. Thank you so much mam🙂

gigproductions
Автор

*THERE IS A DIFFERENCE BETWEEN putchar() AND putch()* - putchar() belongs to standard C library (stdio.h), but putch() belongs to POSIX library (conio.h). Putchar() can print any single character of C character set (including the 31 non-printable characters), but putch() can only print a single alphanumeric character. getch()/Conio.h is not supported by many C compilers like GCC, and is used by DOS/Windows based compilers to make use of the I/O console. That's why it's not supported by UNIX and Linux.

debojitacharjee
Автор

NOTES:
putchar()
To print single character
Syntax
putchar(variable_name);
putch()
puts()
It is used to print a string
General syntax
puts(variable_name);
The special thing is→The new line function is built in

divyprakashpandey
Автор

First view and comment best teacher in whole YouTube for CS .

manvendra
Автор

Puts('a') getting an error
BCz it is single character constant
And puts() is used only for string

walkwithme_P
Автор

11:23
Formatted :In this we have to specify the data type of the output or input variable which we are using
eg :printf("%c", a); where a is a char, scanf("%c", &a);

Unformatted : In this we do not need to specify the data type of the output or input variable which we are using
eg :putchar(a) where a is a char, a=getchar().

parthshroff
Автор

not for others



THERE IS A DIFFERENCE BETWEEN putchar() AND putch() - putchar() belongs to standard C library (stdio.h), but putch() belongs to POSIX library (conio.h). Putchar() can print any single character of C character set (including the 31 non-printable characters), but putch() can only print a single alphanumeric character. getch()/Conio.h is not supported by many C compilers like GCC, and is used by DOS/Windows based compilers to make use of the I/O console. That's why it's

noone
Автор

Beauty with brain...Very dangerous combination..😍

Nanduchandu
Автор

if we enter to print puts('a') it will try to print output but since puts is used for printing strings it shows an error as ( expected output if a char but the argument is of type int). to avoid this error we should use double quotes like puts("a") then it will print a

hariparuchuru
Автор

Formatted Input and output mean arranging or formatting according to our wish, whereas Unformatted input and output means cannot arrange according to our wish.
When running gets('c'), we get an error because that is to be only mentioned for strings and not for a character.

durgalankipalli
Автор

Ma'am you are awesome, your teaching style are awesome ♥️❤️❤️♥️

Harishchandra-ikcs
Автор

Thanks a lot mam for improving my coding skills

anujsolanki
Автор

Mam please make a video series on solving previous year gate questions and expected questions of gate

arunmozhichelvanscse
Автор

Clear and neat explanation mam, wonderfull classess👏👌🥰💐🙏

kalyani-vw
Автор

1:19 in formatted I/O functions the data we input can be arranged in a specific format, by using format specifiers .but in case of unformatted I/O functions there is no any way to input data in a specific format

SadhanaSharma
Автор

How can we get the PDF notes of this series of c languages??

hadieudonne