What is the purpose of Scanf Print, getchar, putchar,
function?
Answer Posted / vignesh1988i
scanf() is used to get the input from the user using the compailer.
printf() is used to output the messages given by the user in the output screen
getchar() is used to get a single character from the user.....
putchar() is used to output a single character and echo's in the output screen
| Is This Answer Correct ? | 94 Yes | 7 No |
Post New Answer View All Answers
What is the stack in c?
Difference between linking and loading?
What is merge sort in c?
Tell us bitwise shift operators?
How to find a missed value, if you want to store 100 values in a 99 sized array?
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
What is the difference between typedef struct and struct?
How can I implement a delay, or time a users response, with sub-second resolution?
How do you list files in a directory?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Differentiate Source Codes from Object Codes
What is an lvalue?
Which driver is a pure java driver
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)