STRTOK usage

xiaoxiao2021-03-05  53

#include

#include

#include

Main ()

{

Char s [] = "Golden Global View";

CHAR * D = ""

Char * p;

P = STRTOK (S, D);

While (p)

{

Printf ("% s / n", s);

P = STRTOK (NULL, D);

}

GetChar ();

Return 0;

}

转载请注明原文地址:https://www.9cbs.com/read-31880.html

New Post(0)