两三句代码求解释。。。。。
在以下的代码里static int a=0 与int a有什么区别?#include <stdio.h>
fun()
{
static int a=0;
a+=2;printf("%d",a);
}
以下的代码,请求高手帮我说说他是表达的什么意思。。int t()这个是什么用法???
int t(int x,int y,int cp,int dp)
{cp=x*x+y*y;
dp=x*x-y*y;
}
2012-07-11 15:49
2012-07-11 15:58
2012-07-11 16:02
2012-07-11 23:29
2012-07-12 00:18
2012-07-12 11:24
2012-07-12 14:26
2012-07-12 14:26
2012-07-12 15:44
2012-07-12 15:55