代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/132106/14110275
cpp bignum.cpp
#include
#include
#define SIZE 120
class bigInt {
public:
bigInt(char aBigInt[], bool negativeFlag = false, bool zeroFlag = false) { strcpy(a, aBigInt); setNegative(neg
www.eeworm.com/read/130553/14186777
c memrev.c
/*
** Public domain demo by Ray Gardner, 7 dec 88
**
** Here's an old programming trick that (I bet) will be new to at least a
** few of you out there, even some "old hands". I don't remember
www.eeworm.com/read/129726/14231630
c strrve.c
#include
#include
void main()
{
char string[20];
strcpy(string,"I'm fine thank you!");
strrev(string);
printf("reverse string is %s\n",string);
}
www.eeworm.com/read/129536/14239048
cpp 5.cpp
#include
#include
#include
void reverse(char*);
void floattostr(char*,long int);
void reverse(char *str)
{
char *t;
int c;
t=str+(strlen(str))-1;
for
www.eeworm.com/read/128466/14296092
cpp chapter2-27.cpp
//文件名:CHAPTER2-27.cpp
#include
#include
#include
using namespace std;
int main()
{ //create constant string
const string hello("Hello, how are you?");
//i
www.eeworm.com/read/128030/14318650
cpp ex7_1.cpp
// ex7_1.cpp
// reverses a C-string
#include
#include //for strlen()
using namespace std;
int main()
{
void reversit( char[] ); //prototype
www.eeworm.com/read/127668/14341987
lst clibarc.lst
CLIB.H
ABS.C
ATOI.C
ATOIB.C
AUXBUF.C
AVAIL.C
BSEEK.C
BTELL.C
CALL.ASM
CALLOC.C
CLEARERR.C
CSEEK.C
CSYSLIB.C
CTELL.C
DTOI.C
EXIT.C
FCLOSE.C
FEOF.C
FERROR.C
FGETC.C
FGETS.C
FOPEN.C