HELLO.CPP
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:

数据结构

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include "hello.h"
  4. char *hello(char *name) {
  5. char *value = new char [9+strlen(name)];
  6. sprintf(value,"hello,%s.",name);
  7. return value;
  8. }
  9. #include <iostream.h>
  10. #include "hello.h"
  11. void main(){
  12. cout << hello("world") << endl;
  13. }