由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 大家觉得这样的code怎么样?
相关主题
C++: pointer to members how to do it ?=======Problem – coding in c++
1st class citizenC语言一个passing variable的问题
Python, import/globalfunc调用结束时出错
Why do I need to use "plain" pointer?is smart_ptr really that good?
Question about friend in C++[合集] pointer in C
C++问题,confusing...pointer overflow
一个简单的小问题How to use a function return by reference in C++
请问可以这样定义struct吗?about STL functor and function pointers
相关话题的讨论汇总
话题: func1话题: int话题: data话题: func3话题: func2
进入Programming版参与讨论
1 (共1页)
a****l
发帖数: 8211
1
我也就写pseudo code 了:
int data;
main()
{ func1(10);
func2(20);
func3(30);
}
func1(int a) { data = a + 1;}
func2(int a) { data = a + 5;}
func3(int a) { data = a - 5;}
大家觉得这样的C程序写的怎么样?
c**t
发帖数: 2744
2
no error check?

【在 a****l 的大作中提到】
: 我也就写pseudo code 了:
: int data;
: main()
: { func1(10);
: func2(20);
: func3(30);
: }
: func1(int a) { data = a + 1;}
: func2(int a) { data = a + 5;}
: func3(int a) { data = a - 5;}

i******r
发帖数: 323
3
行为艺术?

【在 a****l 的大作中提到】
: 我也就写pseudo code 了:
: int data;
: main()
: { func1(10);
: func2(20);
: func3(30);
: }
: func1(int a) { data = a + 1;}
: func2(int a) { data = a + 5;}
: func3(int a) { data = a - 5;}

y****i
发帖数: 156
4
better in this way
int func1(int a)
{
return a + 1;
}
data = func1(a)
n****g
发帖数: 150
5
best in this way
main
{
func1(int a);
}
ask_for_help func1;

【在 y****i 的大作中提到】
: better in this way
: int func1(int a)
: {
: return a + 1;
: }
: data = func1(a)

h******e
发帖数: 26
6
why didn't he use pointers?
K****n
发帖数: 5970
7
路过
1 (共1页)
进入Programming版参与讨论
相关主题
about STL functor and function pointersQuestion about friend in C++
大家新年好。 请教一个 c interview questionC++问题,confusing...
what's the purpose of pointer to pointers?一个简单的小问题
请教个virtual function的问题请问可以这样定义struct吗?
C++: pointer to members how to do it ?=======Problem – coding in c++
1st class citizenC语言一个passing variable的问题
Python, import/globalfunc调用结束时出错
Why do I need to use "plain" pointer?is smart_ptr really that good?
相关话题的讨论汇总
话题: func1话题: int话题: data话题: func3话题: func2