Program of Transcersal in c lang of Data Structure
Program of Transcersal in c lang of Data Structure
//Program of Transcersal in c lang of Data Structure
#include <stdio.h>
#include <conio.h>
int main()
{
int a[50],size,i;
printf("enter size of array:");
scanf("%d", &size);
printf("ENTER element of array:");
for (i=0; i<size; i++)
{
scanf("%d", &a[i]);
}
printf("ele in array are:");
for (i=0; i<size; i++)
{
printf("%d", a[i]);
}
return 0;
}input
2
12345
Output
enter size of array:
ENTER element of array:
ele in array are:123450
Comments
Post a Comment