#include #include int main(void) { char a[95]; for(int i=33; i<=126; i++)a[i-33]=i; a[94]='\0'; printf("%s",a); return EXIT_SUCCESS; }