I don’t understand the result of the following C code.
main()
{
char s[] = “AAA”;
advanceString(s);
}
void advanceString(p[3])
{
int val = atoi(p);
printf(“The atoi val is %d
“,val);
} Th
I don’t understand the result of the following C code.
main()
{
char s[] = “AAA”;
advanceString(s);
}
void advanceString(p[3])
{
int val = atoi(p);
printf(“The atoi val is %d
“,val);
} Th