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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!