what is difference between getchar,putchar functions and
printf and scanf function? does putchar show output only
when input given to it
Answer Posted / akash kumar
getchar() reads one character from the "standard input",which is usually the user's keyboard. the syntax of the getchar() function is written as: character variable=getchar(). putchar() read's one character from the " standard output", which is usually the user's keyboard. the syntax of the putchar() function is written as : putchar ( character variable ). printf print the text , scanf reads the input .....
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
what are # pragma staments?
How can I determine whether a machines byte order is big-endian or little-endian?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
what are the different storage classes in c?
What are the types of functions in c?
What is operator precedence?
What does 4d mean in c?
What is difference between function overloading and operator overloading?
What are the different types of pointers used in c language?
What is the difference between %d and %i?
How can I change the size of the dynamically allocated array?
What is string function c?
How do shell structures work?
Why functions are used in c?