代码搜索:strings
找到约 10,000 项符合「strings」的源代码
代码结果 10,000
www.eeworm.com/read/358784/10179559
ncb strings.ncb
www.eeworm.com/read/358784/10179560
dsw strings.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/358784/10179562
plg strings.plg
Build Log
--------------------Configuration: strings - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\Kip\L
www.eeworm.com/read/358784/10179563
cpp strings.cpp
#include
extern "C" void MakeString()
{
char firstName[20];
strcpy(firstName,"tim");
}
void main()
{
MakeString();
}
www.eeworm.com/read/358784/10179564
dsp strings.dsp
# Microsoft Developer Studio Project File - Name="strings" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) C
www.eeworm.com/read/358784/10179565
asm strings.asm
TITLE strings.cpp
.386P
include listing.inc
if @Version gt 510
.model FLAT
else
_TEXT SEGMENT PARA USE32 PUBLIC 'CODE'
_TEXT ENDS
_DATA SEGMENT DWORD USE32 PUBLIC 'DATA'
_DATA ENDS
CONST S
www.eeworm.com/read/358784/10179566
opt strings.opt
www.eeworm.com/read/358682/10181995
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/357508/10208281
c strings.c
/****************************************************************************
* Copyright (c) 2000,2003 Free Software Foundation, Inc. *
*
www.eeworm.com/read/356874/10219721
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