I was working with Dev-Cpp with my TDM-GCC 4.9.2 64-bit Release. But suddenly got stuck in printing long double values.
#include<stdio.h>
void main(){
long double a = 22.0/7.0;
printf("%Lf",a);
}
It compiled well. Then when I ran it it said : "Error 216: This version of %1 is not compatible with the version"
What should I do?
I am not such a good programmer. If you would put some explanations and help me fix this I would be grateful