|
char str[][5] = { "R2D2" , "C3PO"
, "R2A6" };
To ignore the "xx" part of "R2xx" and look for anything that tsars with "R2", which is "R2D2" and "R2A6"int n; puts ("Looking for R2 astromech droids..."); for (n=0 ; n<3 ; n++) if (strncmp (str[n],"R2xx",2) == 0) { printf ("found %s\n",str[n]); } return 0;
Why would they take the trouble?