代码搜索:String

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

代码结果 10,000
www.eeworm.com/read/371578/9548559

asm eg0317.asm

;eg0317.asm include io32.inc .data string1 byte 'equal or not' ;first string string2 byte 'eQual or not' ;second string count equ sizeof string1 .code start: mov ecx,count mov esi,offse
www.eeworm.com/read/371578/9548599

asm eg0317a.asm

;eg0317a.asm include io32.inc .data string1 byte 'equal or not' ;first string string2 byte 'equal or not' ;second string count equ sizeof string1 .code start: mov ecx,count mov esi,offs
www.eeworm.com/read/175226/9554957

cpp list1313.cpp

//Listing 13.13 Using strncpy() #include #include int main() { const int MaxLength = 80; char String1[] = "No man is an island"; char String2[MaxLength
www.eeworm.com/read/175226/9554976

cpp list1312.cpp

//Listing 13.12 Using strcpy() #include #include using namespace std; int main() { char String1[] = "No man is an island"; char String2[80]; strcpy(S
www.eeworm.com/read/365949/9838361

cpp getline2.cpp

//这个程序在本书所带软盘中。文件名为GETLINE2.CPP //这个程序利用getline()的第二种输入形式将输入中的加号过滤掉。 #include #define max 81 void main(void) { char string1[max]; //定义字符串 char string2[max]; char temp[2];
www.eeworm.com/read/169164/9877605

java stringapplet2.java

//StringApplet2.java import java.awt.*; import java.applet.*; public class StringApplet2 extends Applet { //变量声明 TextField textField1; TextField textField2; Button button1; String di
www.eeworm.com/read/363449/9950909

cpp xstring.cpp

// Borland C++ - (C) Copyright 1991 by Borland International //XSTRING.CPP--Example from Getting Started */ // version of STRING.CPP with overloaded operator + #include #include
www.eeworm.com/read/167585/9959817

l boa_lexer.l

%{ /* * Boa, an http server * Copyright (C) 1995 Paul Phillips * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU
www.eeworm.com/read/361872/10030690

c virginia.c

#include #include #include #define max 2048 int key[1024]; char * encode (int * string, const int count,const int n) { int i,j; char ch, * encode_strin
www.eeworm.com/read/361386/10055741

java action_part.java

package java_cup; /** * This class represents a part of a production which contains an * action. These are eventually eliminated from productions and converted * to trailing actions by factorin