">分析下列程序,写出程序运行结果#include
int main()
{
char c1 = 'a', c2 = 'b', c3 = 'c';
printf("a%cb%cc%cabc\n", c1, c2, c3);
return 0;
}