c Pointer d'impression d'impression

#include <stdio.h>

int main()
{
char * str = "Hello";
printf("%s\n", str);

return 0;
}
Calm Centipede