printf usage : Printf « Console « C / ANSI-C






printf usage



#include <stdio.h>
int main()
{
    printf("Hello World\n");
    return (0);
}
  

           
       








Related examples in the same category

1.Displaying printable charactersDisplaying printable characters
2.Displaying printable characters plus whitspace namesDisplaying printable characters plus whitspace names
3.Demonstrates printing the results of simple equations
4.Prints 3 characters forward and backward to demonstrate character printingPrints 3 characters forward and backward to demonstrate character printing
5.Return value from printf