[ create a new paste ] login | about

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

slevy1ster - C, pasted on Nov 30:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main()
{
   printf("%d\n",strcmp("C","CZ"));
   printf("%d\n",strcmp("D","CZ"));
   return 0;
}


Output:
1
2
-90
1


Create a new paste based on this one


Comments: