[ad_1]
OK if you want to fill your char with ‘b’ character you CAN do it this way
char d[7];
int i;
for (i = 0; i < 7; i++) {
d[i] = 'b';
}
[ad_2]
solved initialization of char [] and working with it. I don’t want to use “string” [duplicate]