What will be the output of the program?
#include <iostream>
#include <string.h>

using namespace std;

const char a[] = "12345";

int main() {
    char* b = new char[sizeof(a)];
    strncpy(b, a, sizeof(a));
    char* c = new(b) char('5');
    
    cout << a << endl << b << endl << c;
}
Explanation
Using an additional option of the new operator, memory for c was allocated inside the block previously allocated for b.

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести