Code Snippets C

#include
#include
int main(void)
{
char str[80] = "I am Superman";
strcpy(str, "I like Superman");
printf(str);
return 0;
}