#include void f( char const s[]) { s[0] = 'h'; } int main(int argc, char *argv[]) { char s[] = "Hello"; printf("%s\n", s); f(s); printf("%s\n", s); }