I am new to C++, I see following syntax in c++ to initialize variable.
int(i)=1;
Then, I have compiled in G++ compiler and compiler did not give any error or warning.
So, What does mean int(i)=1;
in C and C++?
Also, I have tested in C, I thought, the C compiler give an error but it's also working fine.