First commit 24/10/1997

This commit is contained in:
2021-09-12 19:47:27 +02:00
commit 1a08d45c82
9 changed files with 1365 additions and 0 deletions

20
TCOMPROB.CPP Normal file
View File

@ -0,0 +1,20 @@
#include <stdio.h>
char t[7][7];
void main (void)
{
int x, y;
char *d;
d = &t[0][0];
for ( x=0; x<7; x++)
for ( y=0; y<7; y++)
{
t[x][y] = 7*y + x;
if ( t[x][y] != *( d + 7*x + y ) )
printf ( "DISTINTOS\n" );
}
}