What is the purpose of Scanf Print, getchar, putchar,
function?
Answer Posted / kumutha
sacnf()- input data can be entered into the computer using
the standard input'c' library function........
printf()- output data or result of an operation can be
displayed from the computer to a standard output device
using the library function........
getchar()- single character can be given to the computer
using 'c' input library function........
putchar()- used to display one character at a time on the
standard output device.........
| Is This Answer Correct ? | 29 Yes | 3 No |
Post New Answer View All Answers
What is a lookup table in c?
When the macros gets expanded?
What is the use of pragma in embedded c?
How can I handle floating-point exceptions gracefully?
How can I discover how many arguments a function was actually called with?
What is C language ?
What is the use of linkage in c language?
What is the explanation for the dangling pointer in c?
What is a structure member in c?
How can type-insensitive macros be created?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Is multithreading possible in c?
using for loop sum 2 number of any 4 digit number in c language
Do you know the difference between exit() and _exit() function in c?
Is it better to use a macro or a function?