Outputting Strings
Explore how to output strings to the console in C.
We'll cover the following...
The puts() function
puts( ) is used to print strings. It is more effective than printf( ), as printf( ) is capable of printing things other than strings as well; hence, it is likely to work slower.
The basic syntax ...
Ask