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
What is the stack in c?
What is difference between union and structure in c?
What is nested structure with example?
Why ca not I do something like this?
What is the most efficient way to count the number of bits which are set in an integer?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
How to Throw some light on the splay trees?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Which one would you prefer - a macro or a function?
Can we compile a program without main() function?
How do you search data in a data file using random access method?
Place the #include statement must be written in the program?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is the difference between c and python?