C compiler with embedded metalanguage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 rivejä
136 B

int
f1(char *p)
{
return *p+1;
}
int
main()
{
char s = 1;
int v[1000];
int f1(char *);
if (f1(&s) != 2)
return 1;
return 0;
}