Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void get_the_result(int r) {
- printf("%d", r);
- }
- int main() {
- int a=5;
- int b=5;
- int c=6;
- get_the_result(a==b);
- get_the_result(b==c);
- get_the_result(b>=c);
- get_the_result(b<=c);
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement