answersLogoWhite

0

2+2 technically =s 4 but if u add them scientifically the answer could be 22 33 99 4 455 32 76 and 106

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

How many subscript or dimension of array are supported by c program?

The standard does not specify a limit, it is implementation defined. The practical limit on my system is 30 dimensions. You can easily determine the upper limit by instantiating a static array of char (the smallest data type), where each dimension is 2 (the minimum size for any dimension). static char ch[2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2] = {0}; // ok static char no[2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2] = {0}; // no can do! Note that if you allocate on the stack (non-static allocation), the limit drops to just 19 dimensions. Note also that a dimension of size 1 isn't an array. You can easily have hundreds of dimensions all of size 1 in an array, but there would only ever be 1 element in the entire array. Thus any dimension of 1 in any array (no matter which dimension) becomes redundant in terms of the array's size. For example, the following definitions are all exactly the same size: char ch[3][2][1] = {0}; char ch[3][1][2] = {0}; char ch[1][3][2] = {0}; char ch[3][2] = {0};


Palakumpasang 2 2?

palukumpasang 2/2


If else else sample programs java?

if (i==2) if (j==2) System.out.println ("i==2 and j==2"); else System.out.println ("i==2 and j<>2"); else System.out.println ("i<>2");


How many tags are in a regular element?

2


How do You create a n by n matrix in C where each element contains two numbers?

It is not very difficult if you can image how it looks. In your case what you need is rectangular Cuboid with height N, width N and depth 2. Here is example in C: /* There N = 2 */ int matrix[2][2][2] = 1, 2}, {1, 2}}, {{1, 2}, {1, 2; /* There N = 3 */ int matrix[3][3][2] = 1, 2}, {1, 2}, {1, 2}}, {{1, 2}, {1, 2}, {1, 2}}, {{1, 2}, {1, 2}, {1, 2; These two are statical, it is possible to create dynamical cuboid, but it is more complex and requires knowledge of pointer and memory management.