C Program to Check Two Numbers Equal

 #include<stdio.h>

void main()

{

    int a,b;

    printf("Enter two numbers: ");

    scanf("%d %d",&a,&b);


    if(a==b)

    printf("True");

    else

    printf("False");

}

Comments

Popular posts from this blog

Single Program Using All Automatic String Functions

C program for subtraction of two matrices (2D Arrays)

C program for Multiplication of Two matrices