What is the purpose of Scanf Print, getchar, putchar,
function?

Answer Posted / bhushan deshmukh

C language is procedural language. It contain's system
function for I/O, These function useing in Input and
Output....

1. Scanf :- function using for formated input.. with
showing some formated output message...

2. Printf :- Function using for display formated output on
console...
3. Getchar() :- using for Get a only one character at one
time...

4. Putchar() :- Using for a single character without
formated...

Is This Answer Correct ?    40 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is 'bus error'?

650


How do you override a defined macro?

702


Write a program that accept anumber in words

1252


What are comments and how do you insert it in a C program?

742


What is the difference between exit() and _exit() function?

607






.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2000


How #define works?

620


Can the sizeof operator be used to tell the size of an array passed to a function?

621


What is wrong with this program statement? void = 10;

822


Does c have class?

614


What is #include cctype?

580


What is calloc in c?

664


Where static variables are stored in memory in c?

524


What is the difference between functions abs() and fabs()?

651


program for reversing a selected line word by word when multiple lines are given without using strrev

1948