#include <stdio.h>
#include <string.h>

int main(void) {
	char str[] = "teste";
	char *strx = "teste";
	printf("%s", str);
	printf("%s", strx);
}

//https://pt.stackoverflow.com/q/236175/101