代码搜索:cannot

找到约 7,468 项符合「cannot」的源代码

代码结果 7,468
www.eeworm.com/read/424383/10455802

c p11.2.c

#include #include #include #include int main(void) { key_t key; int msqid; int proj_id; key=IPC_PRIVATE; msqid=msgget(key,0777); if(msqid==-1)
www.eeworm.com/read/424383/10455804

c p11.1.c

#include #include #include int main(void) { key_t key; int proj_id; char* pathname="./p11.1.c"; proj_id=1; key=ftok(pathname,proj_id); if(key==-1){ perro
www.eeworm.com/read/424383/10455808

c p11.4.c

#include #include #include #include typedef struct { long mtype; char mtext[BUFSIZ]; }msg_info; int creat_msg_queue() { key_t key; i
www.eeworm.com/read/424383/10455999

c p10.2.c

#include #include int main(int argc,char* argv[]) { int f_des1[2]; int f_des2[2]; int pid; char msg[BUFSIZ]; char p_msg[BUFSIZ]; if(argc!=2){ printf("Usage: %s message
www.eeworm.com/read/424383/10456004

c p10.1.c

#include #include int main(int argc,char* argv[]) { int f_des[2]; int pid; char msg[BUFSIZ]; if(argc!=2){ printf("Usage: %s message\n",argv[0]); return 1; } if(pipe(
www.eeworm.com/read/353194/10465425

msg jsfile.msg

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the
www.eeworm.com/read/352106/10580775

c pcm8.c

#include #include #include FILE *rfp,*wfp,*fpa,*fpb; unsigned char Xn,Dn,Sn=0,Yn,Dqn,Xen=0x80; bool flags; unsigned char Two_Yn; void Encode(); void Decode
www.eeworm.com/read/352106/10580784

cpp adpcm8.cpp

#include #include #include FILE *rfp,*wfp,*fpa,*fpb; unsigned char Xn,Dn,Sn=0,Yn,Dqn,Xen=0x80; bool flags; unsigned char Two_Yn; void Encode(); void Decode
www.eeworm.com/read/352106/10580789

cpp pcm8.cpp

#include #include #include FILE *rfp,*wfp,*fpa,*fpb; unsigned char Xn,Dn,Sn=0,Yn,Dqn,Xen=0x80; bool flags; unsigned char Two_Yn; void Encode(); void Decode
www.eeworm.com/read/158966/10706873

cpp staticmemberfunctions.cpp

//: C10:StaticMemberFunctions.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt class X { int i;