Sorry! Posting Assignment is allowed only for commercial accounts.
#include <stdio.h> main() { char *p = "Sanfoundry C-Test"; p[0] = 'a'; p[1] = 'b'; printf("%s", p); }