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

Answer Posted / kumutha

sacnf()- input data can be entered into the computer using
the standard input'c' library function........

printf()- output data or result of an operation can be
displayed from the computer to a standard output device
using the library function........

getchar()- single character can be given to the computer
using 'c' input library function........

putchar()- used to display one character at a time on the
standard output device.........

Is This Answer Correct ?    29 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are bit fields? What is the use of bit fields in a structure declaration?

1494


can we change the default calling convention in c if yes than how.........?

2024


Do you know what are the properties of union in c?

575


Is it possible to execute code even after the program exits the main() function?

801


How do you view the path?

656






Are pointers really faster than arrays?

554


What is main () in c?

580


What is type qualifiers?

651


Explain the process of converting a Tree into a Binary Tree.

2094


Is c is a low level language?

555


What is the value of h?

585


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

620


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.

642


What is binary tree in c?

617


What is a structure in c language. how to initialise a structure in c?

599