strcpy如何變量賦值?
標準C中沒有字符串變量這一說法,其存儲字符串是用字符數(shù)組。
#include <stdio.h>
#include <string.h>
int main(){
char p[30];
strcpy(p,"hello"); //用這個函數(shù)可以給字符數(shù)組賦值。
printf("%s",p);
}
strcpy如何變量賦值?
標準C中沒有字符串變量這一說法,其存儲字符串是用字符數(shù)組。
#include <stdio.h>
#include <string.h>
int main(){
char p[30];
strcpy(p,"hello"); //用這個函數(shù)可以給字符數(shù)組賦值。
printf("%s",p);
}