<div dir="ltr"><div>Hello to all members!</div><div><br></div><div>    I'm a C++ student, used to visual studio till I decided to start from scracth with ubuntu 18.</div><div>I love Kdevelop, it looks amazing and feels impressive. It has been easy to edit, compile <br></div><div>and run little toy programs, but, in debug mode, when I want to know the value of some <br></div><div>variables it returns a valid value for the type but not the one with the variable has been</div><div> initialized.</div><div><br></div><div>    As an example, this code:</div><div><br></div><div>#include <iostream><br><br>int main () <br>{<br>    const float r1= 3.5f, r2 = 7.3f, pi = 3.14159;<br><br>    float area1 = pi * r1*r1;<br>    std::cout << "A circle of radius " << r1 << " has area " <br>          << area1 << "." << std::endl;<br><br>    std::cout << "The average of " << r1 << " and " << r2 << " is " <br>          << (r1 + r2) / 2 << "." << std::endl;<br>}</div><div><br></div><div><br></div><div>    In debug mode r1 gives a value of 1.39... instead of 3.5 and r2 has the value 0.7219... instead of 7.3, last but not least pi gives the correct value...last, but not least the program outputs the correct results before exit.</div><div><br></div><div>Thanks a lot for your time, and thanks to all of you who have made Kdevelop possible!</div><div><br></div><div>José Antonio<br></div></div>