[ create a new paste ] login | about

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

C++, pasted on Apr 26:
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
int main()
{
    int i;
    for(i = 0; i < 10; ++i)
        std::cout<<i;
    std::cout<<std::endl;
    for(i = 0; i < 10; i++)
        std::cout<<i;
    return 0;
}


Output:
1
2
0123456789
0123456789


Create a new paste based on this one


Comments: