FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
GitHub Viewer
// 02-scopes.cpp : define three variables with the same name in one program #include using namespace std; auto a{ 1.5f }; int main() { println("(1) {}", a); auto a{ 2u }; println("(2) {}", a); { auto a{ 2.5 }; println("(3) {}", a); } }
Back
|
FazBrowse Home
|
New Git URL