This code from C++ to Turbo C
#include<stdio.h>
#include<conio.h>
public class Stack
{
private:
int size;
int top;
int *values;
public:
Stack(int size)
{
this->size =size;
values = new int [size];
top = -1;
}
void main()
{
Stack *myStack = new Stack(10);
}
};
what will be its output:??
if code is wrong pls. tell me a right code.. thnx...