옵션 |
|
원래는 작동해야 하는 코드인데 작동을 안 하네요..
오류문의 내용은 Cannot initialize a variable of type 'char*' with an rvalue of type 'void*' 이라고 나옵니다.
https://opentutorials.org/module/1034/7239 여기서 18분쯤에 있는 내용이랑 똑같은데 ㅠㅠ
#include <iostream>
#include <stdlib.h>
using namespace std;
int main(void) {
char *p = malloc(sizeof(char) *4);
*p = 'a';
*(p+1) = 'b';
cout << p;
return 0;
}