revicenme para ver porfa me da un error

Iniciado por eduardo17445, 3 Junio 2015, 02:45 AM

0 Miembros y 1 Visitante están viendo este tema.

eduardo17445

Mod: Segundo aviso, los códigos van en etiquetas GeSHi

Código (cpp) [Seleccionar]
//error me dice controlador no valido
#include <iostream>
#include <conio.h>
#include <cstdlib>
#include <stdlib.h>
#include <stdio.h>
using namespace std;
struct nodo{
int nro;
struct nodo*sig;

};
typedef struct nodo *apilar *desapilar;
void push(int valor, apilar & tope)
{
aux=new(struct nodo)
aux->nro=valor;
aux->sig=tope;
tope=aux;
}
void pop(int valor, desapilar & tope)
{
 (struct nodo)new=aux;
 nro=valor->aux;
 sig=tope->aux;
 aux=tope;  
}
int main()
{
int p;
int NULL;
int dato;
apilar *p;
p=NULL;
push(dato,p)
p->NULL;
return 0;
}

0xFer

Tienes conceptos muy vagos de cómo programar, lo que necesitas es estudiar: http://c.conclase.net/?id=descargas

Empieza por ahí
Código (java) [Seleccionar]
int getRandomNumber(){
    return 4; //chosen by fair dice roll
              //guaranteed to be random
}