Initial commit.

This commit is contained in:
2022-05-03 14:06:05 +02:00
commit b5c13fd836
6 changed files with 75 additions and 0 deletions

9
00-const-vars/const.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <cstdlib>
int main()
{
const int num = 7;
int res = num + 4;
return EXIT_SUCCESS;
}