using function names

This commit is contained in:
pommicket 2022-02-06 20:00:30 -05:00
parent b404c21bfc
commit bbd9eb17e0
4 changed files with 48 additions and 18 deletions

View file

@ -1,12 +1,19 @@
static int g;
/* static int g; */
int f(int x, int y[3]) {
int z = 17 +x;
int g[]={1,2,3,4,5};
int h;
return *(g + x + z);
int main() {
int a = exit;
int b[] = {1,2,3};
exit(1);
}
/* int f(int x, int y[3]) { */
/* int z = 17 +x; */
/* int g[]={1,2,3,4,5}; */
/* int h; */
/* funciton(h,g,z); */
/* return *(g + x + z); */
/* } */
/* typedef int AA[sizeof x]; */