#include #include int main(){ char hello[11]; strcpy(hello,"hello"); if(5==5){ strcpy(hello,"goodbye "); } printf("%s%d%s",hello,6," test"); }