int main( int argc, char **argv ) {
}
In this specific program, I want to check the whether the length of the char **argv is match to the argument count. However, I am not sure how I can loop through the character array of pointer of pointer.
Can anyone give me a suggestion? I am very new to C from Java base.