some more

This commit is contained in:
rattatwinko
2025-04-29 20:53:38 +02:00
parent b489370357
commit 79670e7723
9 changed files with 114 additions and 0 deletions
BIN
View File
Binary file not shown.
+6
View File
@@ -0,0 +1,6 @@
# dynamarray (c++topy)
numbers = [1,1,2,2,34,45,5,6,7,2,3,34]
for i in range(0, len(numbers)):
print(numbers[i])
+6
View File
@@ -1,3 +1,9 @@
/*
We use the sizeof Opperator here to determine the size of the Array "numbers" {in this case 10} ;
After that we print "i" Element in "numbers"
*/
#include <iostream>
using namespace std;