Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <stdlib.h> #include <math.h> int main(int ac, char **av) { printf("hello world %f\n", (double)sqrt(128.)); return 0; }
-
1 2 3 4 5 6 7 8
#include <stdio.h> #include <stdlib.h> int main(int ac, char **av) { printf("hello world\n"); return 0; }
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 // radky #define M 10 // sloupce int main(void) { int mat[N][M]; // matice 5x10
...
-
1 2 3 4 5 6 7 8
#include <stdio.h> double eff(double x){return x*x * exp(-x) - 2;} double effPrime(double x){return 2.0 * x * exp(-x) - x * x * exp(-x);} double newt(double ()(double) , double ()(double), double x, int n){ }
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> void function(int a[], int size) { for(int n=0; n < size; ++n) printf("%d ", a[n]); } int main()
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<conio.h> #include<math.h> int main() { int n,i,j; float a[10][10]; float b[10],p,q,r; clrscr();
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<conio.h> #include<math.h> int main() { int n,i,j; float a[10][10]; float b[10],p,q,r; clrscr();
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <sstream> #include <string> using namespace std; int main() { string s; while(getline(cin,s))
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <stdlib.h> #include <assert.h> void decoupeMinutes(int *const, int *const); int main(int argc, char *argv[]) { (void)argc, (void)argv;
...
-
1 2 3 4 5 6 7 8
#include <stdio.h> void f (int myarr[][2]) { for (int i = 0; i < 2; ++i) for (int j = 0; j < 2; ++j) printf ("%d", myarr[i][j]); }
...
-
1 2 3 4 5 6 7 8
#include <stdio.h> void f (int *myarr[2]) { for (int i = 0; i < 2; ++i) for (int j = 0; j < 2; ++j) printf ("%d", myarr[i][j]); }
...
-
1 2 3 4 5 6 7 8
#include <stdio.h> void f (int *myarr[]) { for (int i = 0; i < 2; ++i) for (int j = 0; j < 2; ++j) printf ("%d", myarr[i][j]); }
...
-
1 2 3 4 5 6 7 8
#include <stdio.h> void f (int **myarr) { for (int i = 0; i < 2; ++i) for (int j = 0; j < 2; ++j) printf ("%d", myarr[i][j]); }
...
-
1 2 3 4 5 6 7
#include <stdio.h> int main() { char *c = "ahoj kamo"; printf("%s\n", c); return 0; }
-
1 2 3
main(){ printf("Hello world\n"); }
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> #include<string.h> #define TRUE 1 #define FALSE 0 int check_vowel(char); int main()
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> #include<string.h> #define TRUE 1 #define FALSE 0 int check_vowel(char); int main()
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> #include<string.h> #define TRUE 1 #define FALSE 0 int check_vowel(char); int main()
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> #include<string.h> #define TRUE 1 #define FALSE 0 int check_vowel(char); int main()
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> #include<string.h> #define TRUE 1 #define FALSE 0 int check_vowel(char); main()
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { long long int i=0,n; while(1) {n=i; if(n%7==3) {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { long long int i=0,n; while(1) {n=i; if(n%7==3) {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { long long int i=0,j,n; while(1) {n=i; if(n%7==3) {
...
-
1 2 3 4 5 6 7 8 9
#include "stdio.h" void triplePointeur(int *pointeurSurNombre); int main(int argc, char *argv[]) { int nombre = 5; triplePointeur(&nombre); // On envoie l'adresse de nombre à la fonction
...
-
1 2 3 4 5 6 7 8 9
void triplePointeur(int *pointeurSurNombre); int main(int argc, char *argv[]) { int nombre = 5; triplePointeur(&nombre); // On envoie l'adresse de nombre à la fonction printf("%d", nombre); // On affiche la variable nombre. La fonction a directement modifié la valeur de la variable car elle connaissait son adresse
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <stdlib.h> char *stringIP(unsigned int IP); unsigned int intIP(char *string); int main(void) {
...
-
1 2 3 4 5 6
#include <stdio.h> int main( void ) { printf( "%d remainder %d\n", -5 / 3, -5 % 3 ); return 0; }
-
1 2 3 4 5 6
#include <stdio.h> int main( void ) { printf( "%g\n", 0x1.AB2Cp12 ); return 0; }
-
1 2 3 4 5 6
#include <stdio.h> int main( void ) { printf( "%g\n", 0x1.AB2Fp12 ); return 0; }
-
1 2 3 4 5 6
#include <stdio.h> int main( void ) { printf( "%g\n", 0x1.AB2Fp15 ); return 0; }


