Incorrect operator is ‘<>’. This format is correct when writing conditional statements, but it is not the correct operation to indicate not equal in C programming. It gives a compilation error as follows.
Code:
#include <stdio.h>
int main () {
if ( 5 <> 10 )
printf( "test for <>" );
return 0;
}