//#include<iostream>
class std
{
public:
int i;
};
int main()
{
std A;
//float f=0.0f;
}
error: ‘struct std’ redeclared as different kind of symbol
error: previous declaration of ‘namespace std { }’
on compiling , above error comes.
we are not including any header file.....then how compiler knows about namespace std?
can we make any class having std?
one more question is : can we make ny program that doesn't call main()....?