UrbanPro

Learn C Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

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 above 15 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

Program to accept a list of elements and find the maximum number in the list. 

 

The logic will be 1. Create an array of the desired type 2. Sort the array in the descending order 3. Fetch the first elemnet from the array, this will be the maximum element in that array. Now use...
Lavanya
0 0
8
What is the structure of a C program?
A basic structure of a C program typically consists of: 1. **Preprocessor Directives:** These are lines of code that begin with a `#` symbol. They are instructions to the compiler to include certain...
Snehal
0 0
5
What are pointers in C language?
Hi Imran, Hope you are doing good. Are you looking for short answer or long answer? :) Pointers in C are variables that store memory addresses. They point to the location of another variable, allowing...
Imran
0 0
7
What are the advantages of using C over C++?
C++ is a object oriented programming language
Rekha
0 0
5
What are the control statements in C language?
Control statements in C are constructs that allow the program to make decisions and control the flow of execution based on certain conditions. The primary control statements in C include if-else statements,...
Jitender
0 0
6

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

Ask a Question

Related Lessons

C for Begginers
C is an procedure oriented programming language. For any begginer the word program is new. Program: Set of instructions to be followed by machine or computer. Instruction Examples: Arithmetic instruction...

Basics Of C And C++
C++ is powerful, highly flexible, and adaptable programming language that allows software engineers to organise and process information quickly and effectively. But this high-level language is relatively...

Some Tricky Questions in C
Can you write two functions in which one executes before main function and other executes after the main function? #pragma startup #pragma exit Where, priority is optional integer value.For user priority...

INTRODUCTION TO PROGRAMMING LANGUAGES
Language is a medium for communication. If we want to perform anything with another person, we can know the human language as a human being. Similarly, if we want to perform anything with a computer, we...

Bit wise operators in C
Bit Wise Operators Bit Wise operators are manipulates of individual bits with in a word of memory. The bit wise operators can be divided in to three general category. One’s Complement...

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
X

Looking for C Language Classes?

The best tutors for C Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C Language with the Best Tutors

The best Tutors for C Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more