in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?
Answer Posted / balakrushna (bk)
Yes.
We can get output using puts() for printing a string or
putchar() for printing single character.
So printf() is not necessary here for printing.
| Is This Answer Correct ? | 74 Yes | 19 No |
Post New Answer View All Answers
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is a global variable in c?
What is the value of c?
Describe the difference between = and == symbols in c programming?
Why doesn't C support function overloading?
Is null always defined as 0(zero)?
What is the symbol indicated the c-preprocessor?
What is stack in c?
Can a program have two main functions?
What is the code for 3 questions and answer check in VisualBasic.Net?
What is the purpose of ftell?
Write a C program in Fibonacci series.
Explain how can you check to see whether a symbol is defined?
What is #include stdio h?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.