代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/250662/12393095

c rev_str.c

/* ** Reverse the string contained in the argument. */ void reverse_string( char *str ) { char *last_char; /* ** Set last_char to point to the last character in the ** string. */
www.eeworm.com/read/250662/12393153

cpp main.cpp

#include void reverse_string(char *); void main() { char s[]="this is an exmaple!"; reverse_string(s); printf("%s",s); } void reverse_string(char *s) { char *start,*end,tem
www.eeworm.com/read/337040/12400878

h stl_iterator.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/250043/12441167

java string7.java

public class String7{ public static void main(String[] args){ StringBuffer sb=new StringBuffer("ABCDEFG"); sb.replace(0, 3,"abc"); System.out.println(sb); sb.reverse(); Sys
www.eeworm.com/read/228167/14399143

cpp 2_6.cpp

#include void main(void) { int n, right_digit, newnum = 0; cout > n; cout
www.eeworm.com/read/226560/14459230

cpp priorityqueue2.cpp

//: C04:PriorityQueue2.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Changing the priority #i
www.eeworm.com/read/125782/14463881

6 gdc.6

.\" $Id: gdc.6,v 1.2 2003/03/15 20:50:03 tom Exp $ .TH GDC 6 .SH NAME gdc \- grand digital clock (curses) .SH SYNOPSIS .B gdc [-s] [ .I n ] .SH DESCRIPTION .I Gdc runs a digital clock made of reverse-
www.eeworm.com/read/226201/14489260

txt 许可协议.txt

秉泰健康体检软件产品最终用户许可协议 ═════════════════════════════════ 重要说明-请仔细研读:   本《最终用户许可协议》(以下简称『许可协议』)是一份,您 (个人或单一法人团体)与『秉泰软件科技有限公司』(以下简称 『秉泰软件』),就『秉泰健康体检网络版』之软件产品,其中包括书 面资料、相关之媒体介质、以及可能包括『在线』或电子文档(以下简 称为『 ...
www.eeworm.com/read/225991/14506629

in potfiles.in

plugins/browse/browse.c plugins/browse/browse.glade.h plugins/convert/convert.c plugins/convert/convert.glade.h plugins/diff/diff.c plugins/diff/diff.glade.h plugins/email/email.c plugins/email/email.
www.eeworm.com/read/223007/14664838

c rev_str.c

/* ** Reverse the string contained in the argument. */ void reverse_string( char *str ) { char *last_char; /* ** Set last_char to point to the last character in the ** string. */