200 coding examples for using VC++

源代码在线查看: p3-166.cpp

软件大小: 115 K
上传用户: happy_christina
关键词: examples coding using 200
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include
				#include 
				
				//main()函数
				void main( void )
				{
				    //声明字符数组
				    char ch,string[80],*p;
				    int n;
				
				    //输入字符串和要查找的字符
				    cout				    cout				    cin>>string;
				    cout				    cin>>ch;
				
				    //在string中查找ch中的字符并显示
				    p=strchr(string,ch);
				    cout				
				    //输入字符串和要查找的字符串并查找
				    char substr[80];
				    cout				    cout				    cin>>substr;
				
				    //在string中查找substr中的字符串并显示
				    p=strstr(string,substr);
				    cout				}
							

相关资源