Please forget me if I my question is not right.I am a beginner in c++. I just wrote a simple program in c++ My code is:
#include<iostream>
using namespace std;
int main()
{
float a,b,c;
a=0;
b=-5;
c=a/b;
cout<<c;
}
When I ran this code the output is -0. How the answer could be -0 while -0 doesn't exist?