write a program to accept a number from user and check whether it is true or false
Answers
Answered by
0
Answer:
true
Explanation:
that true
program to accept a number from user to computer
Answered by
0
Answer:
The program output is also shown below.
* C program to accept two integers and check if they are equal.
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");
printf("M and N are not equal\n");
Explanation:
I hope this may help you....
Similar questions