This is my personal collection of daily lessons, professional insights, and programming experiences. It’s a space where I document what I learn, and you can explore and learn from my journey too.
C প্রোগ্রামিং দ্বিতীয় অধ্যায় - TRUE হলে 1 FALSE হলে 0 printf করবে
আমরা জানি কম্পিউটার ০ এবং ১ ছাড়া কিছু বুজতে পারে না । তাই যখন আমরা relation operator use করি তখন শর্ত যদি ভুল হয় তখন ০ printf করবে আর TRUE হলে 1 printf করবে ।
#include int main() { int a=1,b=2,c; c= a>b; printf("%d ",c); return 0; }
#include int main() { int a=5,b=2,c; c=a>b; printf("%d ",c); return 0; }
No comments:
Post a Comment