Saturday, August 20, 2011

Create dynamic array.

//Program to create dynamic array.
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main()
{
  int* array;
  int n, i;
  printf("Enter the number of elements: ");
  scanf("%d", &n);
  array = (int*) malloc(n*sizeof(int));
  for (i=0; i<n; i++)
  {
    printf("Enter number %d: ", i);
    scanf("%d", &array[i]);
  }
  printf("\nThe Dynamic Array is: \n");
  for (i=0; i<n; i++)
  {
    printf("The value of %d is %d\n", i, array[i]);
  }
  printf("Size= %d\n", i);
  getch();
  return 0;
}

Previous Next Home
0 Comments
Comments

Leave a Comment

:)) ;)) ;;) :D ;) :p :(( :) :( :X =(( :-o :-/ :-* :| 8-} :)] ~x( :-t b-( :-L x( =))

Twitter Delicious Facebook Favorites More