代码搜索:SWAP
找到约 10,000 项符合「SWAP」的源代码
代码结果 10,000
www.eeworm.com/read/475069/6801512
bmp_swap border.bmp_swap
www.eeworm.com/read/475069/6801587
bmp_swap ammo.bmp_swap
www.eeworm.com/read/475069/6801588
bmp_swap box.bmp_swap
www.eeworm.com/read/475069/6801920
bmp_swap health.bmp_swap
www.eeworm.com/read/474431/6809241
c swap2.c
/*
** Exchange two integers in the calling program.
*/
void
swap( int *x, int *y )
{
int temp;
temp = *x;
*x = *y;
*y = temp;
}
www.eeworm.com/read/474431/6809246
c swap1.c
/*
** Exchange two integers in the calling program (doesn't work!).
*/
void
swap( int x, int y )
{
int temp;
temp = x;
x = y;
y = temp;
}
www.eeworm.com/read/472768/6865117
c use_swap.c
#include
void swap_values(int *, int *);
void main(void)
{
int a = 1, b = 2;
printf("Original values a %d b %d\n", a, b);
swap_values(a, b);
printf("Swapped value
www.eeworm.com/read/193607/8213346
cpp swap1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/193607/8213541
cpp swap1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/292920/8323985
c swap2.c
/* swap2.c -- researching swap1.c */
#include
void interchange(int u, int v);
int main(void)
{
int x = 5, y = 10;
printf("Originally x = %d and y = %d.\n", x , y);
int