Skip to content

Commit 948ef43

Browse files
committed
Correct error on text and switch result
1 parent 21a6c64 commit 948ef43

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Examples/switchCase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ int main()
3535
char symbolic1 = 'r';
3636
int octResult;
3737
octResult = charToOctNum(symbolic1);
38-
cout << symbolic1 << endl; // Returns 4
38+
cout << octResult << endl; // Returns 4
3939
return 0;
4040
}

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Why consider C++?
22
![You are c++ brave](https://github.com/zircon-tech/cpp-development/blob/files-and-folders/Memes/cpp_meme1.jpg)
3-
C++ is a very versatile low-level language; it is very used to high performance solutions some of the use cases are AAA video games, IoT, embedded systems, and resource-heavy VR and AI applications.
3+
4+
5+
C++ is a very versatile low-level language, it is very used to high performance solutions. Some of the use cases are AAA video games, IoT, embedded systems, and resource-heavy VR and AI applications.
46

57
On Blockchain development, we can see it on bitcoin’s core and underneath solidity language.
68

@@ -23,15 +25,15 @@ Depending on your goal with C++ development and your operating system, there are
2325

2426
## Syntaxes
2527
If you are familiar with C, C# or Java you will not struggle to get up to speed with C++ syntaxes.
26-
Here there is a great repository with a summarize explanation of C++ syntaxes, best way to learn is with practice and leave some great places to find information.
28+
Here there is a great repository with a summarize explanation of C++ syntaxes, best way to learn is with practice and here are some great places to find information.
2729
- [CPPTutorial | Derek Banas](https://github.com/derekbanas/CPPTutorial/blob/main/cpp-tut.cpp)
2830
- [CPP Tutorial with examples and Quiz | W3schools](https://www.w3schools.com/cpp/default.asp)
2931
- [CPP Basics | GeeksForGeeks](https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm)
3032

3133

3234
## Libraries
3335
One great source to check libraries is:
34-
- cplusplus
36+
- [cplusplus](https://www.cplusplus.com/reference/)
3537

3638

3739

@@ -48,7 +50,7 @@ One great source to check libraries is:
4850
## Useful links / Sources
4951
- [Dear ImGUI | Open source Graphical User Interface for C++](https://github.com/ocornut/imgui)
5052
### About Bitcoin Source Code
51-
The Bitcoin Source Code: A Guided Tour - Part 1, Block Time and Spacing | Dev Oskii
53+
[The Bitcoin Source Code: A Guided Tour - Part 1, Block Time and Spacing | Dev Oskii](https://www.youtube.com/watch?v=duAcEElZpNk)
5254
## Books
5355
### About C++
5456
- C++ A beginers guide, Herbert Schild

0 commit comments

Comments
 (0)