write a function in C++ to perform Push operation in a dynamically allocated stack containing real number
Answers
Answered by
1
Answer:
C++ program to perform a PUSH operation on a dynamically allocated stack
#include<iostream.h>
#include<conio.h>
struct Node {
int data;
Node *next;
}
*top,*p;
Node* newnode(int x
Explanation:
Hope it helps
Mark as brainliest
Similar questions