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
Can math operations be performed on a void pointer?
What is %lu in c?
How many bytes is a struct in c?
What are file streams?
What happens if you free a pointer twice?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What does %d do?
i have a written test for microland please give me test pattern
What is merge sort in c?
Does sprintf put null character?
What are local variables c?
How can I trap or ignore keyboard interrupts like control-c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is a lookup table in c?