Hello,
Please tell me why can't i use a float variable in structure??

for eg..
Code:
struct Point
{
    float x;
    float y;
};
Now when i use this structure and take variable input using scanf, it gives error " Floating Point Format Not Linked"
and then without taking any input it displays message "Abnormal Program Termination" and exits.

Please tell why is this happening and also it's solution