This website works better with JavaScript.
Home
Explore
Help
Sign In
piumarta
/
subc
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add true and false demonstrating exit status
master
Ian Piumarta
3 months ago
parent
e2f9479f9e
commit
e2bb1d7df9
2 changed files
with
12 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
false.txt
+6
-0
true.txt
+ 6
- 0
false.txt
View File
@ -0,0 +1,6 @@
#!./main
int main(int argc, char **argv)
{
return 1;
}
+ 6
- 0
true.txt
View File
@ -0,0 +1,6 @@
#!./main
int main(int argc, char **argv)
{
return 0;
}
Write
Preview
Loading…
Cancel
Save