how can you print&scan anything using just one character? :)
HINT: printf,scanf similer
Answer Posted / sivarama ganesan
putc, getc
putc will print only one character. getc will scan on
character from the given input/parameter
Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
How can I change their mode to binary?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is meant by inheritance?
What is bash c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is a shell structure examples?
Is c weakly typed?
What is extern variable in c with example?
Explain how do you list files in a directory?
Which is more efficient, a switch statement or an if else chain?
Why can’t we compare structures?
What is the code in while loop that returns the output of given code?
If you know then define #pragma?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Why we write conio h in c?