C program to accept two integers and check if they are equal.


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");
}



 

Post a Comment

Post a Comment (0)

Previous Post Next Post