hi guys, have you wondered how to slowprint in c++? well I have a super simple solution that anybody can do... it takes less than 5 min to code and yo...
in this post i will show you how to change the font or background color in c++, there is a lot of questions around the internet asking how to change i...
First, open a new repl.
Next declare `char op`, `int num1`, and `int num2`.
```cpp
char op;
int num1,num2;
```
In the main function, we ask the user f...
###### ~~so apparantly using markdown makes my tutorials better so don't mind the awful markdown your about to witness~~
## Hello there, my last tuto...
# C++ Tutorial
So, this is a C++ tutorial. Thanks to @EpicGamer007 for the idea(s).
You should know some programming so I won't explain what a variab...
Have you heard of multithreading and just wish you could make your programs faster?
Well... unfortunately just using threads is not enough, you have t...
[Empirical](https://www.empirical-soft.com) is a language for time-series analysis. It has builtin Dataframes (tables) and integrated queries. It's fu...
# C++ FULL Beginners Course.
Hello, I am @Wuru and this is my C++ FULL Beginners Course.
I know @HahaYes already did one but I wanted to do a more i...
This may be a little confusing for some people...
Short Tutorial on the [The Basics] of C++.
Hope you enjoy!
FULLSCREEN [HERE](https://C-tut-pt1.sil...
Detecting keypresses in c++ without pressing enter
So, in all of the repl consoles, you need to press enter to input something. However, there are ways around this. This one is for c++.
First, we're g...