Zadania z dziś

This commit is contained in:
2022-11-09 17:10:49 +01:00
parent 4f1dff7e51
commit 095e7c102c
5 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include <iostream>
#include <string>
std::string gnirts(std::string &wejscie){
int dlugosc = sizeof(&wejscie)/sizeof(int);
for (int i : dlugosc){
aaa
}
return gnirts;
}
int main(int argc, char *argv[])
{
std::cout << gnirts("Hello, world!")<< std::endl;
}