main()
char *s1="Second";
char *s2="First";
swap(s1,s2);
printf("%s\n",s1);
printf("%s\n",s2);
I have as an exercise, to swap those 2 strings above (so that the one that executes the program will see "First Second" instead of "Second First"), by changing the values of their pointers, using the function swap (that I have to make).