#include <stdio.h>
main() {
char let = 'a';
int x;
for (x=0;x<300;x++) {
printf("%d let %c\n",x,let);
let++;
}
}
My question is.. Are these really non-printable characters and of no use to copy/paste ability in the terminal? also.. Which numbered item is the real newline char, is that the newline shown 21 spaces before the '!' character?
Basically I am changing the characters in a string one by one using manipulation of numbers, but the end result should fall as a readable character. So a readable loop range may need to be specified when adding numbers instead of simply..
to_main[i]=to_mod[i]+32;


Sign In
Create Account

Back to top









