#include<string.h> #include<stdio.h> int main(void){ char str[80]; strcpy(str, "hello"); printf("%s", str); }
hello