I only know and only use printf()
, but I want to try a function that can output something without the use of %
parameters.
I want to do something like this:
printf("Hello, %s.\n", name);
But no longer using %
for it. Something like:
foo("Hello, ");
foo(name);
foo(".\n");
Is there a function that acts like this?