I've started learning C and am a bit confused when it comes to arrays.
#include <stdio.h>
int main()
{
int i;
char j[5];
for (i = 0; i < 5; i++)
{
j[i] = 'a';
}
printf("%s\n", j);
}
Running this code prints out
aaaaa♣
I've read that the char array needs to be one byte longer than the string so the compiler can place the \0 at the end. If I replace the code with this:
#include <stdio.h>
int main()
{
int i;
char j[5];
for (i = 0; i < 4; i++)
{
j[i] = 'a';
}
printf("%s\n", j);
}
The output I get is:
aaaaa
The char array is one byte longer than I'm using. I suspect this is why I don't see that odd character at the end of the string?
I tried to test this theory with the following code:
#include <stdio.h>
int main()
{
int i;
char j[5];
for (i = 0; i < 4; i++)
{
j[i] = 'a';
}
for (i = 0; i < 4; i++)
{
printf("%d\n", j[i]);
}
}
But, in the output, I see no nullbyte. Is this because it will only be added when outputed as a string?
97
97
97
97