易百教程

39、下面程序的输出是什么?

#include <stdio.h>
int main()
{
    int c = 8 ^7;
    printf("%d\n", c);
}

上面程序的输出是:15