Skip to main content

ARRAY EXAMPLE IN C PROGRAMMING LANGUAGE

This example describes how to use array in c language.
Syntax:
     Declaration: Datatype array_name [size];
     Initialization: array_name[size];

Example:
  1. #include <stdio.h>
  2. int main ()
  3. {
  4.    int n[ 10 ]; // n is an array of 10 integers 
  5.    int i,j;
  6.    for ( i = 0; i < 10; i++ )
  7.    {
  8.       n[ i ] = i + 100; // set element at location i to i + 100 
  9.    }     
  10.    for (j = 0; j < 10; j++ )
  11.    {
  12.       printf("Element[%d] = %d\n", j, n[j] );//Print each array element on console
  13.    } 
  14.    return 0;
  15. }

Description:
In this example we first simply declare an array for 10 elements, initialize it using for loop, and print all the elements on console.

Line 4: This line declares an array of 10 elements.  
Line 5: Declares variable
Line 6 to 9: Initializes array from 100 to 109 values,
Line 10 to 13 :Prints value of this array. Here " %d " is used because array is of datatype "int".
                       n[j] means j position of element in the list  formed in "n[]" array.

рдорд░ाрдаीрдд рд╡рд░्рдгрди :
рд╣्рдпा рдЙрдзрд░्рдгाрдд рдЖрдкрдг рд╕ोрдк्рдпा рдкрдж्рдзрддीрдиे рдЕрд░рд░े рдордз्рдпे рдХिंрдордд рдЯाрдХрд▓ेрд▓ी рдЖрд╣े рд╡ рдд्рдпा рдХिंрдордд рдХрди्рд╕ोрд▓ рд╡рд░ рджाрдЦрд╡рд▓ी рдЖрд╣े .

рдУрд│ рек: рд╣ी рдУрд│ рдоुрд│े рдоेрдорд░ी рдордз्рдпे резреж рдЕंрдХांрдЪी рдЬाрдЧा рдмрдирддे. рд╣े рдЖрдзी рд▓िрд╣िрди рдЖрд╡рд╢्рдпрдХ рдЖрд╣े .
рдУрд│ рел:  рд╣्рдпाрдд рд╡рд░िрдПрдм्рд▓ рд╕ाрдаी рдоेрдорд░ी рдордз्рдпे рдЬाрдЧा рддрдпाрд░ рд╣ोрддे.
рдУрд│ рем рддे реп; рдЕрд░्рд░े рдордз्рдпे резрежреж рддे резрежреп рд╣े рдЕंрдХ рдЯाрдХрд▓े рдЖрд╣े.
рдУрд│ резреж рддे резрей:  рд╕рдЧрд│ी рдЕрд░्рд░े рдордз्рдпे рдЬрдоा рдХेрд▓ेрд▓ी рдХिंрдордд рдХрди्рд╕ोрд▓рд╡рд░ рд▓िрд╣िрд▓ी рдЬрддे.
   

Comments

Popular posts from this blog

IOT : GARDEN WATER SPRINKLER SYSTEM

IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent transportation systems, applications of IoT open up a world of possibilities for innovation and connectivity. By harnessing the potential of IoT, we can build intelligent and interconnected systems that revolutionize industries, enhance daily life, and pave the way for a more efficient and sustainable future. In this project we will be using...

POWER BI - THE ARCHITECTURE

Power BI Architecture: A Comprehensive Guide to Building Effective Data Analytics Solutions     Understanding Power BI Architecture: Power BI's architecture comprises four main components, each playing a pivotal role in the data analytics process: Data Sources:   Power BI connects to a wide range of data sources, including databases, cloud services, Excel files, web services, and more. This versatility enables organizations to consolidate their data from various systems into a single dashboard. Data Transformation:   Once the data is sourced, it undergoes transformation and cleaning processes to make it suitable for analysis. Power BI's Power Query Editor provides a user-friendly interface to manipulate, filter, and shape data according to specific requirements. Data Model:   The heart of Power BI's architecture lies in its data model, whic...

TOUCH PLATE BASED DOOR BELL

Title:  Touch plate based door bell  Circuit:  Components: IC 555 Resistors: 1 M, 100k, 330 ohms Transistor: BC547  PN2222A Capacitor: 10n 1 Copper plate : as touch plate. A 6v battery An LED / Ic UM66 Description: This is the simple circuit for touch plate based security system. In this project what basically done is, circuit detects stray voltages produced by mains voltage and electrostatic built  up in the room.If sufficient static voltage is detected by the plate then chip will charge up. Transistor BC 547 or PN2222A is used basically to increase the sensitivity.In place of led just connect IC um 66(melody IC). Applications: In homes, of course. This can be specially used in places like hospitals, when patients need to call doctor by himself.