C program to check the equality of given numbers
kw.c
Output
kodingwindow@kw:~$ gcc kw.c
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to check the equality of given numbers ——————————————————————————————————————————— Enter the 1st number -10 Enter the 2nd number -50 -10.000000 is greater than -50.000000 ——————————————————————————————————————————— kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to check the equality of given numbers ——————————————————————————————————————————— Enter the 1st number 10 Enter the 2nd number 50 10.000000 is less than 50.000000 ——————————————————————————————————————————— kodingwindow@kw:~$
What Next?
C program to demonstrate the use of goto statement
C program to demonstrate the use of break and continue statements
Find the output of C programs
Advertisement