#include<stdio.h>
#include<conio.h>
main()
{
puts("I am a programmer"); //puts use as printf and gets use as scanf
puts("Nesark World"); //check it puts or printf both yourself
printf("Nesark World Again");
getch();
}
puts and printf are both standard library functions in C that are used to output text to the screen. However, they have some differences:
- Syntax: The syntax of
putsis simpler than that ofprintf.putstakes only one argument, which is the string to be printed, and automatically appends a newline character at the end.printf, on the other hand, takes a format string as its first argument, followed by a variable number of arguments that are used to replace the placeholders in the format string.
puts("Hello, World!"); // prints "Hello, World!" and a newline
printf("Hello, %s!", "World"); // prints "Hello, World!"
- Formatting:
printfprovides more advanced formatting options thanputs. For example,printfallows you to control the width, precision, and alignment of the output, and to print numbers in different bases.putsdoes not have these formatting options. - Return value:
printfreturns the number of characters printed, or a negative value if an error occurs.putsreturns a non-negative value if successful, or EOF if an error occurs. - Buffering:
printfuses buffered output, which means that the output is not immediately written to the screen, but is stored in a buffer until the buffer is full or the program ends. This can makeprintffaster thanputsin certain situations.putshowever writes the string immediately to the console and starts a new line after.
In general, puts is simpler to use and is suitable for quick and simple output tasks, while printf provides more advanced formatting options and is more suitable for more complex output tasks that require more control over the layout and appearance of the output.
Thanks
Difference between puts and printf in c language.