C語言打印字符串的方式主要有以下幾種:
使用printf函數(shù)打印字符串: printf(“Hello, World!”);
使用puts函數(shù)打印字符串: puts(“Hello, World!”);
使用putchar函數(shù)逐個打印字符串中的字符: char str[] = “Hello, World!”; int i; for (i = 0; i < strlen(str); i++) { putchar(str[i]); }
使用strcpy函數(shù)將字符串復制到一個字符數(shù)組中,然后使用printf函數(shù)打印字符數(shù)組: char str[50]; strcpy(str, “Hello, World!”); printf(“%s”, str);
使用sprintf函數(shù)將字符串格式化到一個字符數(shù)組中,然后使用printf函數(shù)打印字符數(shù)組: char str[50]; sprintf(str, “Hello, %s!”, “World”); printf(“%s”, str);
這些都是常見的打印字符串的方式,具體選擇哪種方式取決于具體的需求和場景。