#include <ctime>
void random_array(int array[SIZE])
{
cout << "исходный массив" << endl;
srand(time(0));
for (int i=0; i<SIZE; i++)
{
array[i] = rand()%100;
cout << array[i] << " ";
}
}
#include <iostream>
#include <string>
using namespace std;
void func(const char* str)
{
cout << str << endl;
}
int main()
{
string test = "test";
func((const char*)&test[0]);
return 0;
}
//output: test