Compare commits
5 Commits
d47a243bf3
...
59d332e157
Author | SHA1 | Date | |
---|---|---|---|
|
59d332e157 | ||
|
fae67f4448 | ||
|
5419075493 | ||
|
7385425961 | ||
|
9a7ad8edc5 |
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
#all regularly compiled binaries
|
||||
echo
|
||||
helloworld
|
||||
|
||||
#Haskell
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|------------|-------------|------|----------|-------------|----------------|----------|
|
||||
| ALGOL | | | | | | |
|
||||
| BASIC | | | | | | |
|
||||
| C | Done | | | | | |
|
||||
| C | Done | Done | | | | |
|
||||
| C# | Done | | | | | |
|
||||
| C++ | Done | | | | | |
|
||||
| COBOL | Done | | | | | |
|
||||
|
|
6
c/echo.c
Normal file
6
c/echo.c
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main( int argc, char *argv[] ) {
|
||||
printf("Echo: %s\n", argv[1]);
|
||||
return 0;
|
||||
}
|
|
@ -1,5 +1,4 @@
|
|||
//compiles and runs successfully
|
||||
#include<stdio.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello World!\n");
|
||||
|
|
Loading…
Reference in New Issue
Block a user