hi, I am hemanth.
I am inputting data as lines.
like
4 3 4 5 6
6 45 65 54 44 34 34
I am Extracting lines using Gets function like
char line[1000];
gets(line);
so, line array contains "4 3 4 5 6"
how to extract the five integer elements from it.
hemanth.avs