Dev - C++ - Problema con la biblioteca Iostream me impide compilar

 
Vista:

Problema con la biblioteca Iostream me impide compilar

Publicado por Francisco Moreno Vilchez (1 intervención) el 21/11/2016 15:27:30
Desde hace algunos dias sufro un problema con el compilador y no se a que se puede deber.
Para empezar la primera ez que me salio este error fue compilando un programa mas complicado para un ejercicio, y a partir de ahi me sale con programillas tan sencillos como este:


1
2
3
4
5
6
7
8
9
#include <iostream>
 
using namespace std;
 
int main(){
	cout << "Maldito error.";
 
	return 0;
}


El error consiste en que cuando intento compilar, se me abre un nuevo codigo en otra pestaña del compilador dev
llamada iostream. Ese codigo que sale cuando intento compilar es el siguiente:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Standard iostream objects -*- C++ -*-
 
// Copyright (C) 1997-2014 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
 
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
 
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
 
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
// <http://www.gnu.org/licenses/>.
 
/** @file include/iostream
 *  This is a Standard C++ Library header.
 */
 
//
// ISO C++ 14882: 27.3  Standard iostream objects
//
 
#ifndef _GLIBCXX_IOSTREAM
#define _GLIBCXX_IOSTREAM 1
 
#pragma GCC system_header
 
#include <bits/c++config.h>
#include <iostream>
 
 
namespace std _GLIBCXX_VISIBILITY(default)
{
_GLIBCXX_BEGIN_NAMESPACE_VERSION
 
  /**
   *  @name Standard Stream Objects
   *
   *  The &lt;iostream&gt; header declares the eight <em>standard stream
   *  objects</em>.  For other declarations, see
   *  http://gcc.gnu.org/onlinedocs/libstdc++/manual/io.html
   *  and the @link iosfwd I/O forward declarations @endlink
   *
   *  They are required by default to cooperate with the global C
   *  library's @c FILE streams, and to be available during program
   *  startup and termination. For more information, see the section of the
   *  manual linked to above.
  */
  //@{
  extern istream cin;		/// Linked to standard input
  extern ostream cout;		/// Linked to standard output
  extern ostream cerr;		/// Linked to standard error (unbuffered)
  extern ostream clog;		/// Linked to standard error (buffered)

#ifdef _GLIBCXX_USE_WCHAR_T
  extern wistream wcin;		/// Linked to standard input
  extern wostream wcout;	/// Linked to standard output
  extern wostream wcerr;	/// Linked to standard error (unbuffered)
  extern wostream wclog;	/// Linked to standard error (buffered)
#endif
  //@}

  // For construction of filebuffers for cout, cin, cerr, clog et. al.
  static ios_base::Init __ioinit;

_GLIBCXX_END_NAMESPACE_VERSION
} // namespace

#endif /* _GLIBCXX_IOSTREAM */




No se que puede significar.
Ademas me salen varios errores del tipo:


[Error] istream does not name a type
[Error] ostream does not name a type


Y así varios ejemplos mas.

La cosa es que no tengo ni idea de como solucionarlo, pero su importancia aumenta cada día ya que tengo que entregar trabajos y practicar para exámenes.

A ver si alguien puede echarme un cable.
Un saludo amigos.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de jorge
Val: 20
Ha mantenido su posición en Dev - C++ (en relación al último mes)
Gráfica de Dev - C++

Problema con la biblioteca Iostream me impide compilar

Publicado por jorge (10 intervenciones) el 21/11/2016 15:49:44
hola creo que esa libreria deberia ponerce asi.

#include<iostream.h>


. saludos.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar