728x90
#include<stdio.h>
#include<stdlib.h>
char count, *ptr,*p;
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);
return 0;
}
*주의사항 - ptr 과 p 의 차이!
728x90