#include <stdio.h>
#include <conio.h>
void main()
{
int a,b;
printf(“Enter the values for A and B\n”);
scanf(“%d %d”, &a,&b);
if(a == b )
printf(“Both the numbers are equal”);
else
printf(“Numbers are not equal \n”);
}
output
Enter the values for A and B
34 45
Numbers are not equal
Latest posts by Mohit Arora (see all)
- MongoDB Operators Tutorial – What are Different Operators Available? - October 5, 2019
- MongoDB Projection Tutorial : Return Specific Fields From Query - March 9, 2019
- MongoDB Index Tutorial – Create Index & MongoDB Index Types - July 6, 2018