Answers for "std meaning c++"

C++
0

use of strstr in c++

/* strstr example */
#include <stdio.h>
#include <string.h>

int main ()
{
  char str[] ="This is a simple string";
  char * pch;
  pch = strstr (str,"simple");
  strncpy (pch,"sample",6);
  puts (str);
  return 0;
}
Posted by: Guest on June-29-2020

Browse Popular Code Answers by Language