C:\C test\yj\oo.cpp(7) : error C2440: '=' : cannot convert from 'void *' to 'char *'
Conversion from 'void*' to pointer to non-'void' requires an explicit cast
이런에러가뜨네요 ㅠ.ㅠ;;
지송하지만 이것두 갈켜주세요
조준회 님이 쓰신 글 :
:
: /0 이 아니라.. \0인것 같군요..
:
: 김경래 님이 쓰신 글 :
: : 책의 예제대로 그대로했는데 값이 왜 안올까요--;;
: : 고수님 갈켜주세요 정말지송합니다.
: :
: : #include<stdio.h>
: : #include<stdlib.h>
: : char count,*ptr,*p;
: :
: : void main()
: : {
: : ptr = malloc(35 * sizeof(char));
: :
: : if(ptr == NULL)
: : {
: : puts("Memory allocation error.");
: : exit(1);
: : }
: :
: : p=ptr;
: :
: : for(count =65;count<91;count++)
: : {
: : *p++=count;
: :
: : *p='/0';
: :
: : puts(ptr);
: :
: : }
: :
: : }
|