how a 3 dimentional array can be represented

Represented

#include <stdio.h>

int main() 
{
	int mya[3][3][4];
	return 0;
}

Which is the same(memory-wise) as a single dimension array

#include <stdio.h>

int main() 
{
	int mya[36];
	return 0;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.