Computer Science, asked by sahurenuka231, 8 months ago


Mansi wants to write a program to compare two values which are not equal, Suggest to her the operator which
displays the non-equality between two operands.​

Answers

Answered by StaceeLichtenstein
16

Following are the program in C langauge

#include <stdio.h> // header file

int main()

{

  int a,b; // variable declaration

  printf("Enter the number:\n");

  scanf("%d%d",&a,&b); // Read the number

  if(a!=b) // check the condition

  {

      printf(" number are not equal");

  }

  else

  {

      printf(" number are equal:");

  }

  return 0;

}

Output:

Enter the number:

34

45

number are not equal

Explanation:

Following are the description of Program

  • Read the value of variable "a" and "b" by the user by scanf function .
  • Used != operator inside the if statement to check  whether number are equal or not.
  • If the condition inside the if block is true then statement inside if block will be executed otherwise the statement inside the else block will be executed .

Learn More:

https://brainly.in/question/8707171

Similar questions