C | Not Equal To: != | Easy Language Reference

Code Translation Project

Don't lose in a world of programming languages

C

Lexical elementsConstantsInteger constantsHexadecimal literalDecimal literalOctal literalFloating point constantsFloatingpoint constantCommentsSingle line commentMulti line commentTypes and variablesBasic data typesNumbersIntegersUnsigned8-bit unsigned integer16-bit unsigned integer32-bit unsigned integerSigned8-bit integer16-bit integer32-bit integerReal numbers32-bit real number64-bit real numberType conversionsExplicitTo 8-bit integerTo 8-bit unsigned integerTo 16-bit integerTo 16-bit unsigned integerTo 32-bit integerTo 32-bit unsigned integerTo 32-bit real numberTo 64-bit real numberVariablesVariable declarationVariable useAutomatic variableAutomatic variable declarationProgram structureStatementsExpressionsOperatorsParenthesis operatorArithmetic operatorsAdditionSubtractionMultiplicationDivisionInteger divisionModuloAdditive inverseLogicalLogical andLogical orLogical negationBitwiseBitwise left shiftBitwise right shiftBitwise andBitwise orBitwise notBitwise xorRelationalLess thanGreater thanLess than or equal toGreater than or equal toEqual toNot equal toAssignmentAssignmentStatementsExpression statementBlock statementLoopsLoop with condition at the endLoop with condition on the beginningConditional statementsConditional statementJump statementsBreak statementContinue statementIncrese decreaseIncrement statementDecrement statement C . Operators . Relational C - Not equal to: !=Not equal to operator is a logical operator that is used to compare two numbers.

!=

Description

par1 != par2Used keywords: !=

Input

  • par1 - Any number
  • par2 - Any number

Output

  • Result - Logical value Returns a true, if the first number is Not equal to the second, otherwise false.
Note: It works over all types of numbers.

Examples

C

Not equal to the possible of use: a = 5 < 10; // a = true b = 8 < x; if ( y < 100 ) x++;

C

Even one example in what situations we can use the operation Not equal to: x != y 1 != 10 (i & j) != 64

C

Other pieces of example codes:y != 25You can find it in the following collections: relational operatorsNot equal to in another programming language: AllBasicFreeBASICVisual Basic .NETCC++Visual C++ .NETC#JavaJavaScriptPascalObject PascalFree PascalPHP Differences to: BasicFreeBASICVisual Basic .NETPascalObject PascalFree Pascal Programming portal - C © Copyright by MKprog Terms of use . Privacy Policy Languages: en hu cz sk

Tag » C Not Equal Operator