initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

16
C++/lesson5/task2.cpp Normal file
View File

@ -0,0 +1,16 @@
#include <iostream>
#include <string>
void boo(int *ptr) {
*ptr = 7;
}
int main(){
int value = 4;
std::cout << "value = " << value << '\n';
boo(&value);
std::cout << "value = " << value << '\n';
return 0;
}