代码搜索:strings
找到约 10,000 项符合「strings」的源代码
代码结果 10,000
www.eeworm.com/read/350641/10723726
h strings.h
class Strings {
char *p;
int size;
public:
Strings(char *str);
Strings();
Strings(const Strings &obj); // Copy constructor
~Strings() {delete [] p;}
friend os
www.eeworm.com/read/350641/10723733
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/421128/10754054
txt strings.txt
;
; String table
;
ZoomInMapToolHelpText = "To zoom in, click on the map or hold the mouse down and drag to draw rectangle, and release to end the operation"
ZoomOutMapToolHelpText = "To zoom ou
www.eeworm.com/read/275538/10812458
cpp strings.cpp
// strings.cpp : implementation file
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This sou
www.eeworm.com/read/275538/10812565
h strings.h
// strings.h : defines all extern const strings
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
www.eeworm.com/read/419674/10845866
strings infoplist.strings
www.eeworm.com/read/419674/10845900
strings ._infoplist.strings
www.eeworm.com/read/271765/10981091
c strings.c
/* Future releases will make use of this */
#include "mycrypt.h"
static const char *err_2_str[] =
{
"CRYPT_OK",
"CRYPT_ERROR",
"Invalid keysize for block cipher.",
"Invalid number of rou
www.eeworm.com/read/417084/11004216
exe strings.exe
www.eeworm.com/read/470800/6908453
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[