A 'C' program to reverse the content of an array without using additional array.
A 'C' program to reverse the content of an array without using additional array.
main() { int i, t,n,s; int a[30]; clrscr(); printf("Enter the number of elements in 1D array"); scanf("%d",&n); printf("Enter the elements of an array"); for (i=0; i
No comments:
Post a Comment