Display table in C

Anonymous user -  
fonceurweb Posted messages 4 Registration date   Status Member -
hello everyone,
I would like to display a table of calculated values in C, the problem is that I haven't found any tutorial talking about displaying arrays... unless it requires diving into the graphical part... if anyone can help me
thank you

2 answers

  1. fonceurweb Posted messages 4 Registration date   Status Member 18
     
    int SIZE=xxxx; //xxxx=total size of the array
    int tab[SIZE]; // array of integers since int
    int i;
    for(i=0;i<size /> printf ("%d",tab[i]);

    printf("\n");

    here's what I would put :p
    17