#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
int main(void) {
char str[] = "abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_-=+]}[{;:'/?.><,|`~";
int size = strlen(str);
srand((unsigned int)time(NULL));
char ch = str[rand() % (size - 1)];
printf("%c", ch);
return 0;
}
/*
run:
j
*/