Write code for initializing one dimentional and two
dimentional array in a C Program?
Answer Posted / 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 |
Post New Answer View All Answers
What is the general form of #line preprocessor?
How to delete a node from linked list w/o using collectons?
Which is the memory area not included in C program? give the reason
What is the use of f in c?
What does c mean in basketball?
Explain how many levels deep can include files be nested?
Explain 'far' and 'near' pointers in c.
What are the advantages of the functions?
i have a written test for microland please give me test pattern
Is main is user defined function?
What are the properties of union in c?
Explain the Difference between the New and Malloc keyword.
What is a function in c?
What is data structure in c programming?
Why c is faster than c++?