Write code for initializing one dimentional and two
dimentional array in a C Program?

Answers were Sorted based on User's Feedback



Write code for initializing one dimentional and two dimentional array in a C Program?..

Answer / raam_bangaloreallinter

1-D array:

int a[4]={ 10,20,30,40};

2-D array: # 2 columns and 2 rows
int a[2][2]= {
{100,200},
{300,400} };


Raam - ramumcato@yahoo.com

Is This Answer Correct ?    19 Yes 1 No

Write code for initializing one dimentional and two dimentional array in a C Program?..

Answer / shruti

Ans no. 4 is correct..

incase u have to initialise an array have more number of
elements as i 100 or 200..

eg..

int a[50];
then u can use following functions:

**YOU CAN INITIALISE IT TO A PARTICULAR VALUE ONLY USING
THE BELOW CODE..

int a[50];
int i;

for (i = 0 ; i < 50 ; i++)
{
a[i] = 0;
}

similarly for 2D

for(i = 0 ; i < 50 ; i++)
{
for(j = 0 ; j < 50 ; j++)
{
a[i][j] = 0;
}
}

Is This Answer Correct ?    11 Yes 3 No

Write code for initializing one dimentional and two dimentional array in a C Program?..

Answer / kalpana.y

array:array is a collection of elements
one dimensional array:
code:
datatype arraysize[];
eg:
int a[5];
two-dimensional array:
code:
datatype array[rowsize][columnsize];
eg:
int a[5][5];

Is This Answer Correct ?    14 Yes 8 No

Write code for initializing one dimentional and two dimentional array in a C Program?..

Answer / dinesh kumar

static int [5]={2,3,4,5,6};
for one dimensional array
static int[3][3]={1,2,3,4,5,6};
for two dimensional array it consider as rows and columns

Is This Answer Correct ?    7 Yes 12 No

Write code for initializing one dimentional and two dimentional array in a C Program?..

Answer / varsha vilas kalebag

one dimensional array :
a={2}
two dimensional array
b={2,3}

Is This Answer Correct ?    5 Yes 18 No

Post New Answer

More C Interview Questions

main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }

4 Answers  


Explain bitwise shift operators?

0 Answers  


why program counter is 16 bit?

3 Answers  


How to removing white spces in c programming only bu using loops

2 Answers  


post new interiew question and aptitude test papers

1 Answers  






what is the difference between postfix and prefix unary increment operators?

3 Answers  


WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

0 Answers   HP,


What is the scope of an external variable in c?

0 Answers  


program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5

8 Answers   Infosys,


What are the loops in c?

0 Answers  


send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?

0 Answers   TCS,


Famous puzzles which are generally asked by companies during interviews ?

1 Answers   3D PLM, Yahoo,


Categories