#include<stdio.h> int main() { char tmp[3]={'\0'}; char ch2[] = "一二三四五六七八九十"; tmp[0]=ch2[4]; tmp[1]=ch2[5]; printf("\n%s\n",tmp); return 0; }