if you have a list X (1 2 3 4) how do we print the first element
Answers
Answered by
0
Answer:
You haven't stated which language you are using. Here's my answer using c#.
List[0].WhateverYourDoing;
Explanation:
Similar questions