#include <stdio.h>//#include <malloc.h> int main(){ char* cadena = (char*)malloc(15); cadena = "Hola\n"; printf(cadena); return 0;}