常量和符号常量在程序运转进程中,其值不克不及被改动的量称之为常量。常量分为分歧的类型,有整型常量如 1、2、3、100;浮点型常量 3.14、0.56、-4.8;字符型常量a、b、0;字符串常量“a”
void getmemory(char p){p=(char ) malloc(100);strcpy(p,“hello world”);}int main( ){char *str=NULL;get