逝去的一面

回味,回味,还是回味...
机会难得,失去了便不再有了。
漏了什么,我清晰的记得,纪念 8.25 Trend 之旅。
int func(const char *str)
{
	FILE *pFile;
	
	if (NULL == str || strcmp(str, "Hello World") != 0)
		return FALSE;
	
	if ((pFile = fopen("helloworld.txt", "w")) != NULL) {
		fprintf(pFile, "%s", "Hello World\n");
		fclose(pFile);
		return TRUE;
	}
	
	return FALSE;
}

你可能感兴趣的:(c)