what is difference between getchar,putchar functions and
printf and scanf function? does putchar show output only
when input given to it

Answers were Sorted based on User's Feedback



what is difference between getchar,putchar functions and printf and scanf function? does putchar s..

Answer / 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

what is difference between getchar,putchar functions and printf and scanf function? does putchar s..

Answer / moses

getchar gets a character,printf prints the text,scanf read
the input,putchar prints the character of getchar....

Is This Answer Correct ?    11 Yes 4 No

what is difference between getchar,putchar functions and printf and scanf function? does putchar s..

Answer / 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

what is difference between getchar,putchar functions and printf and scanf function? does putchar s..

Answer / mudra

The standard C library provides several functions and macros for character 1/0. Here we consider the getchar and putchar macros. As these macros read or write a single character, they are typically used in a loop to read/write a sequence of characters.



A macro call is similar to a function call. Thus, it consists of a macro name followed by a comma-separated argument list enclosed in a pair of parentheses. If a macro does not require any arguments, the pair of parentheses must still be used.

The getchar macro is used to read a single character from the standard input stream, i. e., the keyboard. A call to get char takes the following form: getchar (). This macro waits until a key is pressed and then returns its value (after converting to integer). The value returned can be assigned to a variable of type char. However, note that this macro actually reads the data from the input buffer which is processed by program only when the Enter key is pressed. Thus, getchar does not return a value until the user presses the Enter key. As a result, it is not suitable for interactive programs. We can instead use the getch and getche functions which directly read the data from the keyboard.

The putchar macro is used to write a single character on the standard output stream (i.e., display). A call to this macro takes the following form: putchar (c), where c is an integer expression representing the character being written. Although this macro expects an argument of type int, we usually pass a character to it. The argument value (c) is converted to unsigned char and written to the standard output stream.

Is This Answer Correct ?    0 Yes 1 No

what is difference between getchar,putchar functions and printf and scanf function? does putchar s..

Answer / suji

getchar() gets only one character from the input.putchar
prints that character.printf prints the text that enter
within doublequotes.scanf gets morethan one input from
console.getchar & putchar gets&puts from & to file.

Is This Answer Correct ?    6 Yes 8 No

Post New Answer

More C Interview Questions

True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type

7 Answers  


What happens if you free a pointer twice?

0 Answers  


Write a program to check whether a number is prime or not using c?

0 Answers  


List out few of the applications that make use of Multilinked Structures?

1 Answers   Accenture,


a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21

4 Answers   TCS,






Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.

3 Answers   Infosys,


What is Bitwise Operator and how it works?

1 Answers  


What is calloc() function?

0 Answers  


How can I copy just a portion of a string?

0 Answers  


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


When should the const modifier be used?

0 Answers  


explain memory layout of a C program

2 Answers  


Categories