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
Are pointers integers in c?
What is the significance of scope resolution operator?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What does the && operator do in a program code?
What are shell structures used for?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What is dynamic dispatch in c++?
Explain 'far' and 'near' pointers in c.
Explain what is the difference between far and near ?
What is the process of writing the null pointer?
List some of the dynamic data structures in C?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How can you invoke another program from within a C program?
How can I make it pause before closing the program output window?
What is a const pointer in c?