Question: Given this code snippet, multiple lines will be printed to the screen. What will be the second line? char Array1[100] = Bob Smith,Jr|100 Byte Lane|Binary|TX|01010;
Given this code snippet, multiple lines will be printed to the screen. What will be the second line?
char Array1[100] = "Bob Smith,Jr|100 Byte Lane|Binary|TX|01010";
char Array2[100] = "|,";
char *Token;
Token = strtok(Array1, Array2);
while (Token != NULL)
{
printf("%s ", Token);
Token = strtok(NULL, Array2);
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
