what is difference between getchar,putchar functions and
printf and scanf function? does putchar show output only
when input given to it
Answer Posted / jeevi
getchar is used to get only one character.. putchar is used
to print only one character.
printf can print more than one character,we can get more
than one variable by using scanf.
| Is This Answer Correct ? | 47 Yes | 11 No |
Post New Answer View All Answers
What is main () in c?
When should I declare a function?
What is the meaning of ?
What is difference between Structure and Unions?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Can a function argument have default value?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What header files do I need in order to define the standard library functions I use?
Why is c called "mother" language?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is the purpose of 'register' keyword in c language?
If I have a char * variable pointing to the name of a function ..
What does volatile do?
what do you mean by inline function in C?