c primer plus 第五版 的源代码

源代码在线查看: join_chk.c

软件大小: 284 K
上传用户: guo25621286
关键词: primer plus 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* join_chk.c -- joins two strings, check size first */
				#include 
				#include 
				#define SIZE 30
				#define BUGSIZE 13
				int main(void)
				{
				    char flower[SIZE];
				    char addon[] = "s smell like old shoes.";
				    char bug[BUGSIZE];
				    int available;
				
				    puts("What is your favorite flower?");
				    gets(flower);
				    if ((strlen(addon) + strlen(flower) + 1) 				        strcat(flower, addon);
				    puts(flower);
				    puts("What is your favorite bug?");
				    gets(bug);
				    available = BUGSIZE - strlen(bug) - 1;
				    strncat(bug, addon, available);
				    puts(bug);
				   
				    return 0;
				}
							

相关资源