This website requires JavaScript.
Explore
Help
Sign In
nortega
/
cpp-optimizations
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Files
66c220997985c0e294911cea09753b6fa2fab52b
cpp-optimizations
/
00-const-vars
/
const.cpp
T
10 lines
98 B
C++
Raw
Normal View
History
Unescape
Escape
Initial commit.
2022-05-03 14:06:05 +02:00
#include
<cstdlib>
int
main
()
{
const
int
num
=
7
;
int
res
=
num
+
4
;
return
EXIT_SUCCESS
;
}
Reference in New Issue
Copy Permalink