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
create table vinod(empid int,empname varchar(20),empage int); select 1,vinod,24 UNION ALL select 2,Jaspreet,25 select * from vinod;
-
1 2 3 4 5 6
create table vinod(empid int,empname varchar(20),empage int); select 1,vinod,24 union all select 2,Jaspreet,25 select * from vinod;
-
1 2 3 4
create table vinod(empid int,empname varchar(20),empage int); insert into vinod(empid,empname,empage)values{(1,'Vinod',24),(2,'jaspreet',25)}; select * from vinod;
-
1 2 3 4
create table vinod(empid int,empname varchar(20),empage int); insert into vinod(empid,empname,empage)values(1,'Vinod',24,2,'jaspreet',25); select * from vinod;
-
1 2 3 4
create table vinod(empid int,empname varchar(20),empage int); insert into vinod(empid,empname,empage)values(1,'Vinod',24) and (2,'jaspreet',25); select * from vinod;
-
1 2 3 4
create table vinod(empid int,empname varchar(20),empage int); insert into vinod(empid,empname,empage)values(1,'Vinod',24)or(2,'jaspreet',25); select * from vinod;
-
1 2 3 4
create table vinod(empid int,empname varchar(20),empage int); insert into vinod(empid,empname,empage)values(1,'Vinod',24),(2,'jaspreet',25); select * from vinod;
-
1
-
1 2 3 4 5 6 7
{ num = $1; if(num == 42) exit; else printf("%d\n", num); }
-
1 2 3 4 5 6 7 8 9
lda #$0e sta $0400 asl eor #$2d sta $0404 sec adc #$03 sta $0407 lda #$ff
...
-
1 2 3 4 5 6 7 8 9
#include<iostream> using namespace std; int main() { int a = 10, b = 20; (a, b) = 30; // Since b is l-value, this statement is valid in C++, but not in C. cout<<b; return 0; }
-
1 2 3 4 5 6 7 8
#include <stdio.h> int main() { char arry[] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J' }; printf("%s", &arry[0]); }
-
1 2 3 4 5 6 7 8
#include <stdio.h> int main() { char arry = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J' }; printf("%s", &arry[0]); }
-
1 2 3 4 5 6 7 8
#include <stdio.h> int main() { char arry[10] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J' }; printf("%s", &arry[0]); }
-
1 2 3 4 5 6 7 8
#include <stdio.h> int main() { char arry[10] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J' } printf("%s", &arry[0]); }
-
1 2 3 4 5 6
#include 'studio.h' void main(){ printf(1); return 0; }
-
1 2 3 4 5 6 7
{ num = $1; if(num == 42) exit; else printf("%d\n", num); }
-
1 2 3 4 5
int main() { while(malloc(sizeof(int*))); return 0; }
-
1 2 3 4 5 6 7
{ num = $1; if(num == 42) exit; else printf("%d\n", num); }
-
1 2 3 4 5 6 7 8 9
a=[[[3,1],[5,1],[821,1],[273997,1],[7741805910970258163,1]],[[2,2],[107,1],[244219007447,1],[95966808334871,1]],[[2,2],[7,3],[919,1],[56951,1],[103160249,1],[4656410419,1]],[[2,3],[17,1],[177693403,1],[414883089729841223,1]],[[3,1],[31,1],[4951,1],[1346989159,1],[50461897989311,1]],[[7,2],[79,1],[241,1],[4271,1],[48523,1],[1051181,1],[176838479,1]],[[2,1],[1475709031,1],[12177009148932085937,1]],[[6323573,1],[4753519027288416018457,1]],[[2,1],[18164960872674393974925145111,1]]] a.length.times do |i| n=1 (a[i].length).times do |j| n*=a[i][j][0]**a[i][j][1] end s=""; (Math.log(n)/Math.log(256)).ceil.times do s=(n%256).chr+s
...
-
1 2 3 4 5 6 7
{ num = $1; if(num == 42) exit; else printf("%d\n", num); }
-
1
-
1
ls -l
-
1 2 3 4 5 6 7 8 9
import java.*; class ABC { int x=20; public void doThing() { int x=3; system.out.println(x);
...
-
1 2 3 4 5 6 7 8 9
import java.io; class ABC { int x=20; public void doThing() { int x=3; system.out.println(x);
...
-
1 2 3 4 5 6 7 8 9
import java.io; class ABC { int x=20; public void doThing() { int x=3; system.out.println(x);
...
-
1 2 3 4 5 6 7 8 9
import java.io; import java.lang; class ABC { int x=20; public void doThing() { int x=3; system.out.println(x);
...
-
1 2 3 4 5 6 7 8 9
import java.io; import java.lang; class ABC { int x=20; public void doThing() { int x=3; system.out.println(x);
...
-
1 2 3 4 5 6 7 8 9
import java.io; import java.lang; class ABC { int x=20; public void doThing() { int x=3; system.out.println(x);
...
-
1
import java.io; import java.lang; class ABC{ int x=2; public void doThing(){ int x=3; system.out.println(x); } public static void main (String[] args) throws java.lang.Exception { doThing(); } }


