programming-examples/c/_Basic/C Program to Accept two Integers and Check if they are Equal.c
2019-11-15 12:59:38 +01:00

14 lines
313 B
C

/*
* C program to accept two integers and check if they are equal
*/
#include <stdio.h>
void main()
{
int m, n;
printf("Enter the values for M and N\n");
scanf("%d %d", &m, &n);
if (m == n)
printf("M and N are equal\n");
else
printf("M and N are not equal\n");
}