C compiler with embedded metalanguage.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

48 lignes
370 B

int
foo(int x[100])
{
int y[100];
int *p;
y[0] = 2000;
if(x[0] != 1000)
{
return 1;
}
p = x;
if(p[0] != 1000)
{
return 2;
}
p = y;
if(p[0] != 2000)
{
return 3;
}
if(sizeof(x) != sizeof(void*))
{
return 4;
}
if(sizeof(y) <= sizeof(x))
{
return 5;
}
return 0;
}
int
main()
{
int x[100];
x[0] = 1000;
return foo(x);
}