C Exercises: Check two given integers, and return true if one of them is 30 or if their sum is 30
C-programming basic algorithm: Exercise-3 with Solution
Write a C program to check two given integers, and return true if one of them is 30 or if their sum is 30.
C Code:
#include <stdio.h>
int main(void){
printf("%d",test(25, 5));
printf("\n%d",test(20, 30));
printf("\n%d",test(20, 25));
}
int test(int x, int y)
{
return x == 30 || y == 30 || (x + y == 30);
}
Sample Output:
1 1 0
Pictorial Presentation:
Flowchart:

C Programming Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a C program to get the absolute difference between n and 51. If n is greater than 51 return triple the absolute difference.
Next: Write a C program to check a given integer and return true if it is within 10 of 100 or 200.
Inviting useful, relevant, well-written and unique guest posts
- New Content published on w3resource :
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework