viernes, 14 de junio de 2013

LIBRERIAS DE C++

                                               
                                                   LIBRERIAS DE PROGRAMAS
                     
STDIO: que significa STANDARD input-output header" (cabecera estandar E/S),
 
CONIO: el fichero de cabecera, con las declaraciones de funciones y tipos
 
IOSTREAM: es un componente de la biblioteca estándar (STL) del lenguaje de programación C++ que es utilizado para operaciones de entrada/salida.
 
 

EJ #include <stdio.h>

int main(void)
{
   int ch;

   while ((ch = getchar()) != EOF)
     putchar(ch)
 
 


;#include <iostream>
#include <cstdlib>
#include <conio.h>

 
using namespace std;
int main(int argc, char *argv[])
{
textbackground(RED);
textcolor(WHITE);
clrscr();
gotoxy(10,10);
cprintf("¡Hola, mundo!");
system("PAUSE");
return 0;
}

 

 


   putchar('\n');

   return 0;
}
EMPLO DE STDIO:                                     


 
 
 

No hay comentarios.:

Publicar un comentario