KodeGod.com

056. Technical interview question: Give the output of following code

 
int main(){
    float x;
    x=0.35==3.5/10;
    printf("%f", x);
    return 0;
}