hark
FrontPage|FindPage|TitleIndex|RecentChanges|UserPreferences E D R S I M H RSS

[nezy@www tmp]$ cat test.txt
vtvtv

#include <stdio.h>

int main()
{
        FILE *infile= fopen("test.txt", "r");
        char array[10][10];
        fscanf(infile, "%c", &array[0][0]);
        fscanf(infile, "%c", &array[0][1]);

        printf("%c\n", array[0][0]);
        printf("%c\n", array[0][1]);

        return 0;
}


[nezy@www tmp]$ ./a.out
v
t

EditText|FindPage|DeletePage|LikePages| Valid XHTML 1.0! Valid CSS! powered by MoniWiki