Pages

Showing posts with label Program to illustrate One Dimensional Array with address. Show all posts
Showing posts with label Program to illustrate One Dimensional Array with address. Show all posts

Friday, 8 February 2019

Program to illustrate One Dimensional Array with address

Program to illustrate One Dimensional Array with address array and data
#include <stdio.h>
#define max 22
int main()
{
  int a[max],i,n;
  printf("\n Enter the size of an array : ");
  scanf("%d",&n);
  for(i = 0; i < n; i++)
   {
    scanf("%d",&a[i]);
   }
  printf("\n Array elements are  : ");
  for(i = 0; i < n; i++)
   {
    printf("\n Address : %p  --> Array  : a[%d]  --> Data : %d ",&a[i],i,a[i]);
   }
}

Output:

Programs in turboc3 : Files

File Handling in C File Handling concept in C language is used for store a data permanently in computer. Using this concept we can store our...