求大神用c++编个小程序

求大神用c++编个小程序不会用指针啊
2024-10-30 07:35:01
推荐回答(1个)
回答1:

#include
using namespace std;
void main() { char s0[100],s1[50],*p,*q;
  cin>>s0; cin>>s1;
  p=s0; q=s1;
  while ( *p ) p++;
  while ( *q ) { *p=*q; p++; q++; }
  *p=0;
  cout<}