[ create a new paste ] login | about

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

C++, pasted on Sep 24:
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char n[10];
char x[20];
strcat(n,"0123456");
strcat(x,"01234");
cout << strcmp(x,n);
}


Output:
1
Disallowed system call: SYS_socketcall


Create a new paste based on this one


Comments: