代码搜索:strings

找到约 10,000 项符合「strings」的源代码

代码结果 10,000
www.eeworm.com/read/278058/10577225

cpp strings.cpp

// strings.cpp -- storing strings in an array #include #include // for the strlen() function int main() { using namespace std; const int Size = 15; char name1[
www.eeworm.com/read/277580/10619644

html strings.html

www.eeworm.com/read/421785/10698208

c strings.c

/* strings.c -- string formatting */ #include #define BLURB "Authentic imitation!" int main(void) { printf("/%2s/\n", BLURB); printf("/%24s/\n", BLURB); printf("/%24.5s/\n
www.eeworm.com/read/421785/10698539

c strings.c

// strings.c -- stringing the user along #include #define MSG "You must have many talents. Tell me some." // a symbolic string constant #define LIM 5 #define
www.eeworm.com/read/350641/10723597

cpp strings.cpp

class Strings { char *p; int size; public: Strings(char *str); Strings(void); Strings(const Strings &obj); // Copy constructor ~Strings(void) {delete [] p;} f
www.eeworm.com/read/350641/10723605

cpp strings.cpp

class Strings { char *p; int size; public: Strings(char *str); Strings(void); Strings(const Strings &obj); // Copy constructor ~Strings(void) {delete [] p;} f
www.eeworm.com/read/350641/10723621

cpp strings.cpp

class Strings { char *p; int size; public: Strings(char *str); Strings(void); Strings(const Strings &obj); // Copy constructor ~Strings(void) {delete [] p;} f
www.eeworm.com/read/350641/10723629

cpp strings.cpp

class Strings { char *p; int size; public: Strings(char *str); Strings(void); Strings(const Strings &obj); // Copy constructor ~Strings(void) {delete [] p;} f
www.eeworm.com/read/350641/10723698

cpp strings.cpp

class Strings { char *p; int size; public: Strings(char *str); Strings(void); Strings(const Strings &obj); // Copy constructor ~Strings(void) {delete [] p;} f
www.eeworm.com/read/350641/10723704

h strings.h

#include #include #include #include #include class Strings { char *p; int size; public: Strings(char *str); Strings();