#include<stdio.h> #include<stdlib.h> #include<time.h> int main() { int i; char a[10]; srand(time(0)); for(i=0;i<10;i++) { a[i]=rand()%128; printf("%4c",a[i]); } return 0; }