#include <iostream> using namespace std; int fn
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#include <iostream> using namespace std; int fn相关的知识,希望对你有一定的参考价值。
#include <iostream>
using namespace std;
int fn1( );
int main( )
int a=fn1( );
cout<<"the value of a is: "<<a;
return 0;
int fn1( )
int *p=new int(5);
return *p;
这程序有什么问题,请改正
应该是
int *p=new int;
*p=5;
return *p;追问
答案一样的???
追答那原来的程序也是对的了,就是没有什么问题了。
参考技术A 这什么iostream和stdio.h的区别
include<stdio.h> 和include<iostream.h>区别为:来源不同、命名空间不同、移植不同。
一、来源不同
1、include<stdio.h> :include<stdio.h> 是C标准库里面的函数库。
2、include<iostream.h>:include<iostream.h>是C++标准库的函数库。
二、命名空间不同
1、include<stdio.h> :引用include<stdio.h>的类需要手动添加命名空间。
2、include<iostream.h>:引用include<iostream.h>的类默认自动添加命名空间。
三、移植不同
1、include<stdio.h> :include<stdio.h> 不可用于移植和混合嵌入。
2、include<iostream.h>:include<iostream.h>可用于移植和混合嵌入。
参考技术A stdio 是C标准库里面的函数库,对应的基本都是标准输入输出等等C语言常用库的定义iostream是C++标准库的头定义,对应的基本上是C++的输入输出相关库定义
开发C程序用stdio, C++用stdio/iostream 都可以。
但开发C++时,推荐使用 #include本回答被提问者采纳
以上是关于#include <iostream> using namespace std; int fn的主要内容,如果未能解决你的问题,请参考以下文章
带有 `-std=c++0x` 的 `#include <iostream>` 已损坏
#include<iostream> 存在,但出现错误:标识符“cout”未定义。为啥?
#include<iostream.h> 在 turboc++ 中效果很好,但在 Visual Studio 中效果不佳。为啥?