Print printf without using printf

How to print printf without using printf in C program?

Showing Answers 1 - 6 of 6 Answers

prakash

  • Dec 6th, 2015
 

write(1, "hello worldaaaa", strlen("hello worldaaaa"));
or
fwrite("hello worldaaaa", 1, strlen("hello worldaaaa"),stdout);

  Was this answer useful?  Yes

muhammad toseef

  • Feb 9th, 2016
 

Delete node

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions