在C语言中,不等于可以用"! 在C语言中,不等于可以用"!="表示。例如: ``` int a = 10; int b = 20; if (a != b) { printf("a不等于b"); } ```