代码搜索:third
找到约 4,828 项符合「third」的源代码
代码结果 4,828
www.eeworm.com/read/320816/13417730
c nochange.c
#include
void display_and_change(int first, int second, int third)
{
printf("Original function values %d %d %d\n",
first, second, third);
first += 100;
second += 10
www.eeworm.com/read/320816/13417735
c chgparam.c
#include
void display_and_change(int *first, int *second, int *third)
{
printf("Original function values %d %d %d\n",
*first, *second, *third);
*first += 100;
*seco
www.eeworm.com/read/316923/13514256
c nochange.c
#include
void display_and_change(int first, int second, int third)
{
printf("Original function values %d %d %d\n",
first, second, third);
first += 100;
second += 10
www.eeworm.com/read/316923/13514260
c chgparam.c
#include
void display_and_change(int *first, int *second, int *third)
{
printf("Original function values %d %d %d\n",
*first, *second, *third);
*first += 100;
*seco
www.eeworm.com/read/315631/13539229
c nochange.c
#include
void display_and_change(int first, int second, int third)
{
printf("Original function values %d %d %d\n",
first, second, third);
first += 100;
second += 10
www.eeworm.com/read/315631/13539233
c chgparam.c
#include
void display_and_change(int *first, int *second, int *third)
{
printf("Original function values %d %d %d\n",
*first, *second, *third);
*first += 100;
*seco
www.eeworm.com/read/314474/13566776
desanitize-3rdparty
#!/bin/sh
#
# Restore third-party code
#
# $Header: /home/srilm/devel/sbin/RCS/desanitize-3rdparty,v 1.1 2004/12/03 02:43:38 stolcke Exp $
#
for file
do
if [ -f $file.3rdparty ]; then
echo "restor
www.eeworm.com/read/308442/13700965
c nochange.c
#include
void display_and_change(int first, int second, int third)
{
printf("Original function values %d %d %d\n",
first, second, third);
first += 100;
second += 10
www.eeworm.com/read/308442/13700970
c chgparam.c
#include
void display_and_change(int *first, int *second, int *third)
{
printf("Original function values %d %d %d\n",
*first, *second, *third);
*first += 100;
*seco
www.eeworm.com/read/304275/13797006
c parse.c
/*
* Copyright 1993, 2000 Christopher Seiwald.
*
* This file is part of Jam - see jam.c for Copyright information.
*/
/*
* parse.c - make and destroy parse trees as driven by the parser
*
* 09