代码搜索:answer
找到约 6,541 项符合「answer」的源代码
代码结果 6,541
www.eeworm.com/read/444799/7606402
c no-ret.c
/*
** A function that works on some machines despite a major error.
*/
int
erroneous( int a, int b )
{
int x;
/*
** Compute the answer, and return it
*/
x = a + b;
return;
}
www.eeworm.com/read/444799/7606452
c reverse.c
/*
** Reverse the order of the bits in an unsigned integer value.
*/
unsigned int
reverse_bits( unsigned int value )
{
unsigned int answer;
unsigned int i;
answer = 0;
/*
** Keep
www.eeworm.com/read/444091/7618115
c reverse.c
/*
** Reverse the order of the bits in an unsigned integer value.
*/
unsigned int
reverse_bits( unsigned int value )
{
unsigned int answer;
unsigned int i;
answer = 0;
/*
** Keep
www.eeworm.com/read/444091/7618133
c no-ret.c
/*
** A function that works on some machines despite a major error.
*/
int
erroneous( int a, int b )
{
int x;
/*
** Compute the answer, and return it
*/
x = a + b;
return;
}