473,399 Members | 2,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Help please

float (*ptr)[31][13][256][256], *p;

main()

{
float ****A = NULL;
int cnt, cnt1, cnt2, cnt3;

A = malloc(31* sizeof *A);

for(cnt = 0; cnt < 31; ++cnt) {
A[cnt] = malloc(130* sizeof **A);
}

for(cnt = 0; cnt < 31; ++cnt) {
for(cnt1 = 0; cnt1 < 130; ++cnt1) {
A[cnt][cnt1] = malloc(256 * sizeof ***A) ;
}
}

for(cnt = 0; cnt < 3; ++cnt) {
for(cnt1 = 0; cnt1 < 130; ++cnt1) {
for(cnt2 = 0; cnt2 < 256; ++cnt2) {
A[cnt][cnt1][cnt2] = malloc(256 * sizeof ****A);
}
}
}

ptr=&A[0];

}

when i do this its gives me assignment from incompatible pointer type
for the statement"ptr=&A[0]".If i replace array [A] with a static array
like say A [31][130][256][256]
i dont get any warning messages.Why am i egtting an error when iam
assigning the pointer tto the dynamic array?

Thanks

Jul 3 '06 #1
3 1157
vinod.bhavn...@gmail.com wrote:
float (*ptr)[31][13][256][256], *p;
.... snip ...

Multidimensional arrays are a common newbie problem, so it is a FAQ.
See:
<http://c-faq.com/>

Specifically:
<http://c-faq.com/aryptr/dynmuldimary.html>

Jul 3 '06 #2
vi************@gmail.com wrote:
float (*ptr)[31][13][256][256], *p;

main()

{
float ****A = NULL;
int cnt, cnt1, cnt2, cnt3;

A = malloc(31* sizeof *A);

for(cnt = 0; cnt < 31; ++cnt) {
A[cnt] = malloc(130* sizeof **A);
}

for(cnt = 0; cnt < 31; ++cnt) {
for(cnt1 = 0; cnt1 < 130; ++cnt1) {
A[cnt][cnt1] = malloc(256 * sizeof ***A) ;
}
}

for(cnt = 0; cnt < 3; ++cnt) {
for(cnt1 = 0; cnt1 < 130; ++cnt1) {
for(cnt2 = 0; cnt2 < 256; ++cnt2) {
A[cnt][cnt1][cnt2] = malloc(256 * sizeof ****A);
}
}
}

ptr=&A[0];

}

when i do this its gives me assignment from incompatible pointer type
for the statement"ptr=&A[0]".If i replace array [A] with a static array
like say A [31][130][256][256]
i dont get any warning messages.Why am i egtting an error when iam
assigning the pointer tto the dynamic array?

Thanks
Well, this might sound a bit obvious, but there is indeed a type
mismatch here and that is why the compiler is giving you an error.
Before you call me crazy, let me explain. MOST OF THE TIME, you can use
pointers and arrays interchangeably. For instance, char * string and
char string[] can USUALLY be used interchangeably. If a function
expects an array of char, you can give it a char * and vise-versa.

*JUST WHAT IS A?*
When you defined A, you told the compiler that it is a pointer to a
pointer to a pointer to a pointer to a float. That means, when you try
and access the float, the computer will look in the address named by A
and expect to see a pointer(a memory address). When the computer jumps
to the address in that pointer it needs to know what type of data is
there. You told the compiler that the data to expect is yet another
pointer(memory address) and the computer will follow that. This will be
repeated three more times, at which time the computer expects to
finally find the float.

*ISN'T THAT WHAT ptr IS?*
No. ptr is a pointer to a four dimensional array of floats. That means,
when you use indirection to access data through ptr, the computer will
look in the memory address that is named by ptr. The computer expects
to see a pointer(memory address) which it will. So far, this is the
same kind of thing that A is. Now once the computer jumps over to the
address that is pointed to by ptr, the computer expects to see a bunch
of adjacent floats!!! Not another pointer!!!! That is what is different
about these two variables. This stuff is tricky, so watch out.

I recommend that you read a good book that discusses this subject at
length, such as Expert C Programming by Peter Van Der Linden.

P.S. There might be other errors in your code fragment here, be careful
how you are using sizeof!! I don't think it will return what you think!

Jul 3 '06 #3
backasswards <ba**********@gmail.comwrote:
*JUST WHAT IS A?*
A is A, saith Ayn Rand.
I recommend that you read a good book that discusses this subject at
length, such as Expert C Programming by Peter Van Der Linden.
It seems to be a good text, but OP seems more likely to benefit from
K&R and the FAQ in the short term.

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Jul 6 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: laurie | last post by:
Hi all, I'm trying to help out a friend who has inherited a client with a PHP shopping cart application. Neither of us know PHP, but I've been muddling my way through, trying to get these old...
1
by: the_proud_family | last post by:
HELP ME PLEASE!! my email is the_proud_family@yahoo.com I can't get the ball to go up right side and then I need it to turn around and keep turning until velocity=0 I have been at it for the ...
0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
12
by: Christo | last post by:
borland c++ 5.01 character constant must be one or two characters long get this when compiling my first c++ program can anyone out there help? it is highlighting this line as the problem ...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
5
by: Craig Keightley | last post by:
Please help, i have attached my page which worksin IE but i cannnot get the drop down menu to fucntion in firefox. Any one have any ideas why? Many Thanks Craig ...
17
by: JT | last post by:
Help me the following C++ question: Write a program to help a local bookshop automate its billing system. The program should do the following: (a)Let the user enter the ISBN, the system will...
7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
2
by: =?Utf-8?B?U2NvdHRSYWREZXY=?= | last post by:
I'm creating a doc project for my c# program. I've done this before but this time sonething is wrong. I build my doc project and is succeeds but when I open the help file, there is no documentation...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.