// this is to insert an element in a list and displaying #include int main() { int arr[10],loop;//declaring the array puts("\n Enter The Element "); for(loop=0; loop<10; loop++)// traversing the loop scanf("%d", &arr[loop]); // input the loop th element //___________________input complete now displaying_____________________ for(loop=0; loop<10; loop++){ //in this I will traverse the list and print printf("%d Element is : %d",loop,arr[loop]);} }