20120113

Program in c to display third element of an array

//====================
//Program in c to display Third elt of an array
//====================
#include<stdio.h>
int main()
{
int arr[5];
arr[3]=100;
printf("\n Third element of array arr is %d \n ",arr[3]);
return 0;
}

No comments:

Post a Comment