Do array subscripts always start with zero?

Asked by Last Modified  

Follow 3
Answer

Please enter your answer

GeeksForGeeks

In C language array will always starts with index 0, while there are some other languages which offers 1 as the lower index and also some languages have user defined lower and upper bounds, refer to wiki for more details : https://en.wikipedia.org/wiki/Comparison_of_programming_languages_(array) The...
read more
In C language array will always starts with index 0, while there are some other languages which offers 1 as the lower index and also some languages have user defined lower and upper bounds, refer to wiki for more details : https://en.wikipedia.org/wiki/Comparison_of_programming_languages_(array) The technical reason is that C is supposed to be an efficient language. Arrays are stored in contiguous memory locations. So let say, starts at address 1000, the first element of the array will be at 1000. So, if we have indices starting at 1, the compiler would have to subtract one before it can find the actual memory address of the element , Address of an element : baseaddress + ((index-1) * sizeof(element)). In the case of 0-based indices, there is no need to subtract anything, because baseaddress + (index * sizeof(element)) gives us the appropriate address. read less
Comments

Thanks for the question Avishkar, Yes, array subscripts always starts with zero. Thank You, Team DishaaPro
Comments

Professional Tutor with 15 years of experience.

Yes. If you have an array a (in which MAX is some value known at compile time), the first element is a, and the last element is a. This arrangement is different from what you would find in some other languages. In some languages, such as some versions of BASIC, the elements would be a through a, and...
read more
Yes. If you have an array a[MAX] (in which MAX is some value known at compile time), the first element is a[0], and the last element is a[MAX-1]. This arrangement is different from what you would find in some other languages. In some languages, such as some versions of BASIC, the elements would be a[1] through a[MAX], and in other languages, such as Pascal, you can have it either way. read less
Comments

Professional Trainer

Yes, it is a always starts with Zero index to Arraysize-1. If arrasize is 100 then index or subscript of array will be 0 to 99. Mostly all languages follow the same rule like C, C++, Java, C#, etc.
Comments

Training Centre

Yes, array subscripts or indexing is always starts with zero.
Comments

Professional Tutor with 15 years of experience.

Yes. , the first element is a,ie array subscript always starts with zero
Comments

Computer Science Tutor

It purely depends on the programming language. C, C#, Java all provide array indices starting from zero (0). COBOL, FORTRAN, ALGOL etc. languages provide array indices starting from 1.
Comments

Technology expert

yes
Comments

IT Professional Trainer with 20 years of experience into software IT training

Yes in C Language array subscripts always starts with zero
Comments

website and mobile application development training, digital marketing training

yes, as it is quite logical.
Comments

View 47 more Answers

Related Questions

What purpose does \n have in C programming?
is used for new line. It prints the output in New or next line
Nasar
0 0
9
Why are C and C++ faster than other programming languages?
C is basic programming language. It is very simple language & interested. C is procedural programming language
Kalyani
0 0
8
How do I execute the Java program?
javac nameofprogram.java java nameofprogram note***:Name of program should be same as that of your class name having main method *** above steps are used to execute programs on command line
Sharmistha
0 0
6
Is it possible to write big safe programs in C++?
yes. C++ is generally used to write system software. For example windows operating system are writeen in C++. Most of the operating system, device driver and antivirus programs are written by using C++.
Sapna
0 0
6
Other than in a for statement, when is the comma operator used?
Example : int i,j; i=(10,20,30,40); j=10,20,30,40; printf("%d",i); printf("%d",j); // in this program output of i will be 40 and j will be 10 // In interviews you can face such type of comma operator related questions.
Sanjay

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Some interview questions for freshers on C language
Q1. What are the two forms of #include? There are two variants of #include. The one is #include and the other one is #include”file”. In general the first form that is #include is used to...

An Interesting discussion about malloc( ) and calloc( )
What are malloc( ) and calloc( )? Simply putting they are the predefined functions in C language. Malloc( ) and calloc( ) are two such functions which are used for more or less identical purpose and...

Operators in C
Operators in C Operator: An operator is a symbol that tells the compiler to perform certain mathematical or logical calculations. Operators are used in programs to manipulate data and variables. The...

C Program-String Comparison
// WAP to compare strings entered by the user //Header files #include<stdio.h>#include<conio.h>#include<string.h> //Main function void main(){ char str1; char str2; int comp; //Function...

Array vs Linked List
Array Linked List Accessing element is easy. Accessing element is difficult compare to Array. Easy to use. Difficult to use. Memory is Fixed size. Memory is variable size. If...

Recommended Articles

Lasya Infotech is a Hyderabad based IT training institute founded in 2016 by O Venkat. Believing in his innovation, passion and persistence and with a diverse blend of experience, he started his brainchild to deliver exemplary professional courses to aspiring candidates by honing their skills. Ever since the institute envisions...

Read full article >

Brilliant Academy is one of the reputed institutes for B.Tech tuition classes. This institute is specialised in delivering quality tuition classes for B.E, Engineering - all streams and Engineering diploma courses. Incorporated in 2012, Brillant Academy is a brainchild of Mr Jagadeesh. The main motto of the academy is to...

Read full article >

Microsoft Excel is an electronic spreadsheet tool which is commonly used for financial and statistical data processing. It has been developed by Microsoft and forms a major component of the widely used Microsoft Office. From individual users to the top IT companies, Excel is used worldwide. Excel is one of the most important...

Read full article >

Almost all of us, inside the pocket, bag or on the table have a mobile phone, out of which 90% of us have a smartphone. The technology is advancing rapidly. When it comes to mobile phones, people today want much more than just making phone calls and playing games on the go. People now want instant access to all their business...

Read full article >

Looking for C Language Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you