#include <stdio.h>

        main()

        {

            char *p = "Sanfoundry C-Test";

            p[0] = 'a';

            p[1] = 'b';

            printf("%s", p);

        }

Posted on by