[ create a new paste ] login | about

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

C++, pasted on Aug 18:
1
2
3
4
5
6
7
#include <stdio.h>

int main()
{
  printf("%d\n", 123);
  puts("abc");
} 


Output:
1
2
123
abc


Create a new paste based on this one


Comments: