Posts by Matheus C. França • 109 points
7 posts
-
-1
votes1
answer93
viewsQ: What would be the Zig language?
What is Zig? And what is it for? Is this a new version of Rust? 'Cause it looks a lot like Rust. It’s a clone? It’s better than C/C++?
-
2
votes1
answer93
viewsA: What would be the Zig language?
What is Zig? And what is it for? Zig is a multi-paradigm programming language, developed by Andrew Kelley in mid-2015/2016 as Hobby (claims the author), with the intention of becoming an alternative…
-
2
votes3
answers138
viewsA: Why does the Endl exist in C++ and n already performs the same procedure?
The difference between both is the fact that Std::Endl forces the use Std::flush in the output operation, but may compromise performance. Explicit difference: std::cout << "\n" <<…
c++answered Matheus C. França 109 -
-1
votes2
answers82
viewsQ: What is the real complexity behind Sleep Sort compared to the others?
I know this is my first question here on stackoverflow in English. However I missed the mention of this algorithm called Sleep-Sort. From what I know its origin is "supposedly" unknown because the…
-
0
votes1
answer63
viewsA: How can I find the gpu and cpu name in Qt c++
The CLR command causes your code to reference the Runtime of msvc(vcredist) installed dynamically equivalent to '/MD', this acts as a proxy between your code and the CRT. It’s hard to say exactly…
-
1
votes2
answers101
viewsA: Rust installation error in windows 10
Already tried to install using msi installer? Other installation methods Note: If you choose the "windows-msvc" version you will need to install Visual Studio (15)2017 or at least its Buildtools…
rustanswered Matheus C. França 109 -
0
votes3
answers1348
viewsA: Problems with "or" in C++
If using C++ 11/14, you can use or( || ) and and and( && ) normally if you want.