This website works better with JavaScript.
Home
Explore
Help
Sign In
piumarta
/
ccmeta
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
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.
52
Commits
2
Branches
3.4 MiB
C
98.9%
Makefile
0.7%
Shell
0.4%
Tree:
a60f4c2064
develop-theo
master
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'a60f4c2064'
${ noResults }
ccmeta
/
tests-c
/
00004.c
12 lines
73 B
Raw
Blame
History
int
main
(
)
{
int
x
;
int
*
p
;
x
=
4
;
p
=
&
x
;
*
p
=
0
;
return
*
p
;
}