C Program help

Submitted by Karthik on

chisom Wrote: Hi Everyone,
Can you give me some good Example?
This Example will print the Hello without using printf.
It is possible.
Can you help me?

You can use putc() function instead of printf().
e.g.
putc("Enter your name: ");

mableswift
Oct 13, 2011 - 13:42

Putc()

Yes you can use putc() to print a line instead of printf() as both work in the same manner.Both the functions can also be used together in a program for printing values of the variable.