মামলা 1:
#include <iostream>
int main()
{
double d = 15.50;
std::cout<<(d/0.0)<<std::endl;
}
এটি কোনও সতর্কতা এবং প্রিন্ট ছাড়াই সংকলন করে inf
। ঠিক আছে, সি ++ বিভাগটি শূন্য দ্বারা পরিচালনা করতে পারে, ( এটি সরাসরি দেখুন )।
কিন্তু,
কেস 2:
#include <iostream>
int main()
{
double d = 15.50;
std::cout<<(d/0)<<std::endl;
}
সংকলকটি নিম্নলিখিত সতর্কতা দেয় ( এটি সরাসরি দেখুন ):
warning: division by zero [-Wdiv-by-zero]
std::cout<<(d/0)<<std::endl;
Why does the compiler give a warning in the second case?
Is 0 != 0.0
?
Edit:
#include <iostream>
int main()
{
if(0 == 0.0)
std::cout<<"Same"<<std::endl;
else
std::cout<<"Not same"<<std::endl;
}
output:
Same