由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - address of an array
相关主题
Array in C怎么判断int a[]的array的实际长度?
C++ Template Questiona simple question about constructor
a simple question谁给解释一下这个c question
问个基本 C array 问题c# question: char_array.ToString() is not working ?
difference between: char** p and char*p[] ??C++ online Test 又一题 (转载)
一个面试题目,用C实现这个function pointer最后的那个int是什么意思?
问一个C++函数Parameter的问题array和pointer在作为函数返回时有啥区别 (C)
A aimple C++ questionC or C++ test
相关话题的讨论汇总
话题: char话题: array话题: address话题: parameter话题: function
进入Programming版参与讨论
1 (共1页)
s*******d
发帖数: 59
1
void function(char a[])
{
char (*p)[] = &a;
}
anybody tried this?
k****f
发帖数: 3794
2
你想干吗??

【在 s*******d 的大作中提到】
: void function(char a[])
: {
: char (*p)[] = &a;
: }
: anybody tried this?

t****z
发帖数: 229
3
lz想让p指向array a?
这样不行,&a在这里得到的是参数的地址

【在 k****f 的大作中提到】
: 你想干吗??
q*d
发帖数: 20
4
Does the a in the function parameter has a type of int * instead
of int[]?
Thanks,

【在 t****z 的大作中提到】
: lz想让p指向array a?
: 这样不行,&a在这里得到的是参数的地址

t****z
发帖数: 229
5
yes, even when you declared the parameter as an array

【在 q*d 的大作中提到】
: Does the a in the function parameter has a type of int * instead
: of int[]?
: Thanks,

q*d
发帖数: 20
6
Thanks,
I guess it is the convention of C as long as a[] is declared in
the parameter list?

【在 t****z 的大作中提到】
: yes, even when you declared the parameter as an array
t****z
发帖数: 229
7
Yes. Always a pointer.

【在 q*d 的大作中提到】
: Thanks,
: I guess it is the convention of C as long as a[] is declared in
: the parameter list?

s*******d
发帖数: 59
8
上面的代码在vc++ 2005下面,编译有错误:
can't convert char *[] to char (*)[]
语义上,取数组的地址感觉没有意义,不知道为什么c++
要允许这样的操作:
char a[10];
char (*p)[10] = &a;
1 (共1页)
进入Programming版参与讨论
相关主题
C or C++ testdifference between: char** p and char*p[] ??
问一个 char * 和 char [] 的问题一个面试题目,用C实现
问个指针array 的简单问题问一个C++函数Parameter的问题
关于二维矩阵的C的问题A aimple C++ question
Array in C怎么判断int a[]的array的实际长度?
C++ Template Questiona simple question about constructor
a simple question谁给解释一下这个c question
问个基本 C array 问题c# question: char_array.ToString() is not working ?
相关话题的讨论汇总
话题: char话题: array话题: address话题: parameter话题: function