运行下列程序时,则程序的输出结果是()。
#include<bits/stdc++.h> using namespace std; int main () { string s,t; s="abcababc"; t=s. substr(3,3); cout<<t; return 0: }
abc
bca
cab
aba