下面程序执行后的输出结果是__。
#include <stdio.h>int main(){char b[] = "Hello,you";b[5] = 0;printf( "%s", b );return(0);}
0就是‘\0',所以是Hello