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 |
What does sizeof int return?
When should structures be passed by values or by references?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is the purpose of ftell?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
what is ram?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
What is an lvalue?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?