[Solved] Get second string from array [closed]


strs is an array of char *. Arrays in C have a starting index of 0 are indexed with [].

So if you want the second element you would use strs[1].

2

solved Get second string from array [closed]