fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. ' your code goes here
  6. End Sub
  7. End Class
Success #stdin #stdout 0.03s 20596KB
stdin
while(*pt != '\0'){
        *ps = *pt;
        ps++;
        pt++;
    }
 
    *ps = '\0';
}
 
int main(){
    char s[100];
    char t[100];
 
    scanf("%s %s", s, t);
    printf("%s + %s", s, t);
 
    myStrcat(s, t);
 
    printf(" -> %s\n", s);
    return 0;
stdout
Standard output is empty