Skip to content

Instantly share code, notes, and snippets.

@catharsis96
Created October 22, 2016 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catharsis96/ea704600083704610569b7ae8dac3ea4 to your computer and use it in GitHub Desktop.
Save catharsis96/ea704600083704610569b7ae8dac3ea4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void main()
{
char *temp = "Paras";
int i;
i=0;
temp[3]='F';
for (i =0 ; i < 5 ; i++ )
printf("%c\n", temp[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment