All pastes #2082487 Raw Edit

AA

public c v1 · immutable
#2082487 ·published 2011-09-24 13:46 UTC
rendered paste body
#include <stdio.h>  #include <string.h>  int main ()  {    char str[] ="This is a simple string";    char * pch;    pch = strstr (str,"simple");   strncpy (pch,"sample", 5);  puts (str);      getch();  return 0; }