[讨论]C++的标准程序
#ifndef FILENAME_H#define FILENAME_H
char *hello(char *);
#endif
#include <stdio.h>
#include <string.h>
#include "hello.h"
char *hello(char *name){
char *value=new char [9+strlen(name)];
sprintf(value, "HELLO,%s.",name);
return value;
}
#include <iostream.h>
#include "hello.h"
main(){
cout<<hello("world");
}
这个程序 是不是C++的标准程序 我看不太懂 忘人指点一二!