how can you print&scan anything using just one character? :)
HINT: printf,scanf similer
Answer Posted / avinash
getch(),putc()
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain what is dynamic data structure?
What is the difference between procedural and functional programming?
How can I list all of the predefined identifiers?
How will you write a code for accessing the length of an array without assigning it to another variable?
What is the newline escape sequence?
How was c created?
Where is c used?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Why c is procedure oriented?
What is binary tree in c?
Why do we use namespace feature?
What is typeof in c?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Is using exit() the same as using return?