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
What are the parts of c program?
What does emoji p mean?
What are different types of operators?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Explain what math functions are available for integers? For floating point?
Explain can static variables be declared in a header file?
what do you mean by enumeration constant?
What is pre-emptive data structure and explain it with example?
What is a example of a variable?
What are 'near' and 'far' pointers?
How do you use a 'Local Block'?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What are the valid places to have keyword “break”?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file