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 void pointers in c?
Explain what are global variables and explain how do you declare them?
Do array subscripts always start with zero?
What is local and global variable in c?
What is a global variable in c?
How can you tell whether a program was compiled using c versus c++?
Explain what is the benefit of using #define to declare a constant?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Give me the code of in-order recursive and non-recursive.
Which is better malloc or calloc?
How to establish connection with oracle database software from c language?
What is volatile variable in c?
What is structure padding and packing in c?
Is multithreading possible in c?
What are the two types of structure?