SubhanUllah Posted October 10, 2022 Report Posted October 10, 2022 After fixing a tiny error there is no difference #include <stdio.h> int main(){ int p = 3, q = 4; printf("%d\n", (!(p<q))); printf("%d\n", (p>=q)); p = 4, q = 3; printf("%d\n", (!(p<q))); printf("%d\n", (p>=q)); } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.