[ create a new paste ] login | about

Recent Pastes:

C, pasted 41 seconds ago:
1
2
3
4
/* rand example: guess the number */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
...
view (20 lines, 1 line of output)
C, pasted 42 seconds ago:
1
2
3
4
5
#include <stdio.h>

main()
{
printf ("hello, How r u");
...
view (7 lines, 1 line of output)
C++, pasted 1 minute ago:
1
2
3
4
5
#include<iostream>
using namespace std;
int main()
{
cout<<"hgfgf";
...
view (7 lines, 1 line of output)
C, pasted 1 minute ago:
1
2
3
4
5
#include<stdio.h>
#include<conio.h>
typedef struct
{
 int month;
...
view (43 lines, 5 lines of output)
C++, pasted 2 minutes ago:
1
2
3
4
5
//#include <stdafx.h> // Visual Studio users need to uncomment this line
#include <iostream>

// add takes two integers as parameters, and returns the result of their sum
// add does not care what the exact values of x and y are
...
view (17 lines, 1 line of output)
C++, pasted 3 minutes ago:
1
2
3
4
5
char *GenerateNumber(int Len)
{
    char *nick;
    int i;
    nick = (char *) malloc (Len++);
...
view (13 lines)
PHP, pasted 3 minutes ago:
1
2
3
4
<?php
echo sha1('1289k0I9u65q4c31283O4T98926H6');
echo "\n";
?>
view (4 lines, 1 line of output)
C, pasted 3 minutes ago:
1
2
3
4
5
#include <stdio.h>

main()
{
printf "hello, How r u ";
...
view (7 lines, 2 lines of output)
C, pasted 3 minutes ago:
1
2
3
4
/* rand example: guess the number */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
...
view (25 lines, 1171 lines of output)
C, pasted 4 minutes ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
int a=10;
printf("a= %d",a);
...
view (6 lines, 1 line of output)
C++, pasted 4 minutes ago:
1
2
3
4
5
//#include <stdafx.h> // Visual Studio users need to uncomment this line
#include <iostream>

// add takes two integers as parameters, and returns the result of their sum
// add does not care what the exact values of x and y are
...
view (17 lines, 1 line of output)
PHP, pasted 4 minutes ago:
1
2
3
4
<?php
echo sha1('1289k0I9u65q4c31283O4T98926H6');
echo "\n";
?>
view (4 lines, 1 line of output)
C, pasted 5 minutes ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
char *srt="hello how r you";
printf("%s",str);
...
view (7 lines, 5 lines of output)
C, pasted 5 minutes ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
int a=10;
printf("%d a=",a);
...
view (6 lines, 1 line of output)
PHP, pasted 5 minutes ago:
1
implode(',',array(1,2,3));
view (1 line, 1 line of output)
C, pasted 5 minutes ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
char srt[]="hello how r you";
printf("%s",str);
...
view (7 lines)
PHP, pasted 6 minutes ago:
1
2
3
4
5
<html>
<body>

<?php
$d=date("D");
...
view (13 lines, 6 lines of output)
C, pasted 6 minutes ago:
1
2
3
4
5
#include<stdio.h>

void main()
{
string srt[]="hello how r you";
...
view (8 lines, 7 lines of output)
C++, pasted 6 minutes ago:
1
2
3
4
5
char *GenerateNumber(int Len)
{
    char *nick;
    int i;
    nick = (char *) malloc (Len);
...
view (13 lines)
C, pasted 6 minutes ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
int a=10;
printf("&a");
...
view (6 lines, 1 line of output)