Home > Back-end >  Pointer to the problem
Pointer to the problem

Time:09-26

# include & lt; Stdio. H>
//# include & lt; String. H>

Int main (void)
{
Char a []="Boy".
Char * p=a;
Printf (" % s \ % c n, p, p [0]).//why printf (" % s \ % c n, p, p) % c and p cannot match first letter
return 0;
}
  • Related