#include #include int main() { char str[20]; strcpy(str, "Hello Vilag!"); printf("%s\n", str); str[5]=0; printf("%s\n", str); return 0; }