⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pex2_9.cpp

📁 数据结构C++代码,经典代码,受益多多,希望大家多多支持
💻 CPP
字号:
#include <iostream.h>
#include <string.h>

void main(void)
{
	// str points to a string literal
	char *str= "abcdefg";
	int x[4] = {0,1,2,3}, i=0;
	
	// cannot append to a string literal. only
	// 8 chars are actually allocated
	strcat(str,".1234567");
	
	// replace entries of x until a 4 is found.
	// however, there is no 4!
	while(x[i] != 4)
		x[i++] = 99;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -