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
What is the use of typedef in c?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Explain the bubble sort algorithm.
Explain what are the advantages and disadvantages of a heap?
is it possible to create your own header files?
What are identifiers and keywords in c?
Can you please explain the difference between syntax vs logical error?
What is a nested loop?
Why ca not I do something like this?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Explain the difference between malloc() and calloc() function?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Tell us something about keyword 'auto'.
What is sizeof int in c?
How to declare a variable?