1)50:identifier 'push' cannot have a type qualifier.
2)147: declaration missing;
3)147: compound statement missing ;
4)147: compound statement missing ;
Code:
#include<iostream.h>
#include<conio.h>
class stack
{
private:
struct node
{
int data;
node *next;
}*p;
public:
stack();
void