I'm learning C . I want to list an array's values.
In PHP :
$arr = array("laguna", "megane", "clio");
foreach($arr as $no => $name)
{
echo $no." ) ".$name;
}
/*
Output :
0) Laguna
1) Megane
2) Clio
*/
How can i do it in C?
|
|
In C
|
|||||||||||||||||
|
|
NOTE: The OP's question was originally tagged as C++, so I'll leave this answer as-is for those who might be curious about a C++ specific method You can use the The input arguments to the For instance:
|
||||
|
|||
|
|
|
C and C++ are not the same language. Using C++ std::vector in a recent C++ dialect, you might try (untested code):
|
|||
|
|
|
This will give you a good look at using arrays in c++ .
You can go one step ahead and use STL containers like set and map. http://ideone.com/U62Q8 |
|||
|
|
|
In c:
|
|||
|
|