c语言通讯录源代码(打印).doc
你的****书屋
亲,该文档总共16页,到这已经超出免费预览范围,如果喜欢就直接下载吧~
相关资料
c语言通讯录源代码(打印).doc
PAGE\*MERGEFORMAT16#include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>structperson{charname[15];charsex[2];intnianling;longintyoubian;charaddr[50];charcelephone[22];charhomephone[22];charcompany[20];charemail[40];longintQQ;}per[500];
(完整word版)c语言通讯录源代码(打印).doc
PAGE\*MERGEFORMAT16#include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>structperson{charname[15];charsex[2];intnianling;longintyoubian;charaddr[50];charcelephone[22];charhomephone[22];charcompany[20];charemail[40];longintQQ;}per[500];
(完整word版)c语言通讯录源代码(打印).doc
PAGE\*MERGEFORMAT16#include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>structperson{charname[15];charsex[2];intnianling;longintyoubian;charaddr[50];charcelephone[22];charhomephone[22];charcompany[20];charemail[40];longintQQ;}per[500];
(完整word版)c语言通讯录源代码(打印).doc
PAGE\*MERGEFORMAT16#include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>structperson{charname[15];charsex[2];intnianling;longintyoubian;charaddr[50];charcelephone[22];charhomephone[22];charcompany[20];charemail[40];longintQQ;}per[500];
c语言源代码.pdf
c语言源代码在计算机科学领域,C语言是一种被广泛应用的程序设计语言,它以其简洁、高效和可移植性而闻名。本文将提供一些C语言的源代码示例,帮助读者更好地理解和应用这门编程语言。1.HelloWorld程序#include<stdio.h>intmain(){return0;}上述代码是C语言中经典的HelloWorld程序。它使用了stdio.h头文件,其中包含了用于输入输出的函数。main()函数是程序的入口点,它执行printf函数并打印出的字符串。最后,return语句表示程序正常结束。2.计算两个数