Month: June 2022

6.4 ACCESSING ARRAY ELEMENTS IN C

6.4 চি-ত এৰে উপাদানসমূহ প্ৰাপ্ত কৰা Till now we have seen how to declare an array in the C programming language. We will now see how we can access each element of an array – how to take input, how to display etc. এতিয়ালৈকে আমি চি প্ৰগ্ৰামিং ভাষাত এটা এৰে কেনেদৰে ঘোষণা কৰিব লাগে দেখিছোঁ।…

Read the full article

6.3 ARRAY DECLARATION IN C

6.3 এৰে ঘোষণা চি Every programming language supports arrays. The declaration and other syntax may vary a bit from one language to another. In C programming language, the array of Figure 6.1 can be declared as follows. প্ৰতিটো প্ৰ’গ্ৰামিং ভাষাই এৰে সমৰ্থন কৰে। ঘোষণা আৰু অন্যান্য বাক্যবিন্যাস এটা ভাষাৰ পৰা আন এটা ভাষালৈ অলপ বেলেগ…

Read the full article

6.2 INTRODUCTION

৬.২ পৰিচয় Array is a collection of similar data items where elements are stored in contiguous memory locations in our computer. Each data item of an array is typically called an element and each element has a specific memory location and this can be accessed by its relative position in the array. This relative position…

Read the full article

6.1 MOTIVATION

6.1 অনুপ্ৰেৰণা Let us recall the program for finding the summation of a series of numbers. We can refer to the C program of Example 4.7 as shown below. সংখ্যাৰ এটা শৃংখলাৰ সাৰাংশ বিচাৰি উলিওৱাৰ বাবে প্ৰ’গ্ৰামটো মনত পেলাওঁ আহক। আমি তলত দেখুওৱাৰ দৰে উদাহৰণ 4.7-ৰ চি প্ৰ’গ্ৰামটো চাব পাৰোঁ। In this program , We…

Read the full article