[ create a new paste ] login | about

Link: http://codepad.org/bWD0hxqx    [ raw code | output | fork ]

C, pasted on Sep 14:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
 
int main()
{
    int c;
    c = getchar();
    printf("Hello, World!\n");
 
    return 0;
}


Output:
1
Hello, World!


Create a new paste based on this one


Comments: