Please help me to understand the line in main function. What does that means
#include<iostream>
struct ABC
{
private:
int A,
float B;
public :
ABC() {};
~ABC(){};
};
int main()
{
ABC A={}; // What does this statement means?
return 0;
}