Computer Science, asked by dhruvagarwal2pkt, 5 months ago

write a c++ program to input two numbers and display whether they are equal or not​

Answers

Answered by jaymishra200411
0

Answer:

Pictorial Presentation: Sample Solution: C Code: #include <stdio.h> void main() { int int1, int2; printf("Input the values for Number1 and Number2 : "); scanf("%d %d", &int1, &int2); if (int1 == int2) printf("Number1 and Number2 are equal\n"); else printf("Number1 and Number2 are not equal\n"); } Flowchart:

I hope you like this answer

Similar questions