Answer the question
In order to leave comments, you need to log in
What does a pointer point to, a bit or a byte?
string* name = &line;
cout << line;
Answer the question
In order to leave comments, you need to log in
final_data.reduce((acc1, num1) => acc1.reduce((acc2, num2) => acc2.concat(num1.map(num3 => [].concat(num2, num3))), []))
final_data.reduce((acc1, num1) => {
return acc1.reduce((acc2, num2) => {
acc2.push(...num1.map(num3 => [...num2, ...num3]));
return acc2;
}, [])
})
What does line point to bit or byte? Or maybe even a kilobyte?
In this case, an object of the string class. Which, by the way, is not in C.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question