what is array?
Answers were Sorted based on User's Feedback
Answer / celisty aragon
is a systematic arrangement of objects, usually in rows and
columns.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gunasekhar
array is an collection of elements with diff data type
| Is This Answer Correct ? | 67 Yes | 111 No |
Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .
4 Answers State Bank Of India SBI,
What is sparse file?
explain what are pointers?
What is the purpose of 'register' keyword in c language?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What is #line used for?
Is it better to bitshift a value than to multiply by 2?
What are the types of arrays in c?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Why is the code below functioning. According to me it MUST NOT.
What is local and global variable in c?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }