#include int main() { int a = 5, b = 5, C = 10, result; F > result = (a == b) && (C > b); printf("(a == b) &&

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

#include int main() { int a = 5, b = 5, C = 10, result; F > result = (a == b) && (C > b); printf("(a == b) &&

Post by answerhappygod »

Include Stdio H Int Main Int A 5 B 5 C 10 Result F Result A B C B Printf A B 1
Include Stdio H Int Main Int A 5 B 5 C 10 Result F Result A B C B Printf A B 1 (48.68 KiB) Viewed 23 times
#include <stdio.h> int main() { int a = 5, b = 5, C = 10, result; F > result = (a == b) && (C > b); printf("(a == b) && (c > b) is %d \n", result); result = (a == b) && (C<b); printf("(a == b) && (C < b) is %d \n", result); result = (a == b) || (c < b); printf("(a == b) || (C<b) is %d \n", result); result = (a != b) || (c < b); printf("(a != b) || (c < b) is %d \n", result); result !(a != b); printf("!(a != b) is %d \n", result); result !( printf("!(a b); b) is %d \n", result); return 0;
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply