Hello everybody, I really need help to create a program in c language thatputs a
ID: 3531387 • Letter: H
Question
Hello everybody, I really need help to create a program in c language thatputs a postfix calculatorto workthis has to be done by implementing dynamic allocation, malloc,and linked data structures. I am allowed to use stack, queue, but not global variables. there must be 8 different files which are: stack, calculator,queue,and the log manager this four files must include a header and a source file each. the log manager file tells the user how many log entries are in the past time period;in this function will be used long integer as timestamps, and each entry will only contain its timestamp.
Thanks for you help.
Explanation / Answer
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#define MAX 100
void push(int);
int pop(void);
int *p,*tos,*bos;
int main()
{
char s[10];
int a,b;
clrscr();
p=(int*)malloc(MAX*sizeof(int));
if(p==NULL)
printf(
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.