Write code for initializing one dimentional and two
dimentional array in a C Program?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Answer / varsha vilas kalebag
one dimensional array :
a={2}
two dimensional array
b={2,3}
| Is This Answer Correct ? | 5 Yes | 18 No |
Write a Program to accept different goods with the number, price and date of purchase and display them
How can I find leaf node with smallest level in a binary tree?
what is data structure?
Explain what is the difference between far and near ?
What is that continue statement??
Write a program to know whether the input number is an armstrong number.
How do you use a 'Local Block'?
Why n++ execute faster than n+1 ?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is calloc() function?
who is the father of C Language?
20 Answers CTS, UST,
What is the purpose of #pragma directives in C?