Skip to content
Snippets Groups Projects
printf.c 133 B
Newer Older
#include <stdio.h>

int main()
{
  double d = 2;
  char* c = "toto";

  printf("Hello %-- 0+#20.10le %% %s world %d !", d, c, 42);
}