[ create a new paste ] login | about

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

C, pasted on May 19:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<stdio.h>
#include<conio.h>
#include<string.h>

int main()
{
	char s1[] = "abcd";
	char s2[] = "ABCD";

	int kq = _stricmp(s1, s2);
	printf("\nKq = %d", kq);
	_getch();
	return 0;
}


Output:
1
Line 17: error: conio.h: No such file or directory


Create a new paste based on this one


Comments: