Sunday, March 14, 2010

int comparion without ==


#include <stdio.h>

void main() {
int i=109;
int j=109;

if (!(i^j))
printf("Equal\n");
}

No comments:

Post a Comment