in Programming in C retagged by
233 views
0 votes
0 votes
i dont know why the answer is not coming for the following snippet. I COULD NOT UNDERSTAND EXPLAINATION IN YASHWANT KANETKAR BOOK

int main()

{

float x=1.1;

while(x==1.1)

{

printf(“%f\n”,x);

x=x-0.1;

}

return0;

}
in Programming in C retagged by
233 views

1 Answer

0 votes
0 votes
1.0

Related questions