My project is all about queue implementation... please write me a code about calculator with queue. tnx.

Recommended Answers

All 6 Replies

I don't get it. What eludes people to think that we will use up our
time to write a code for someone else without no compensation
or without no effort on the other party. I am completely baffled by
this type of attitude.

My project is all about queue implementation... please write me a code about calculator with queue. tnx.

Here's something essential, start from this and write the rest on your own:

#include <stdio.h>

/*
  Your function declarations
*/

int main(void)
{
   /*
     Your code here
   */
   
   return 0;
}

/*
  Maybe some functions here
*/
commented: Nice one. +12

Calculator requires a stack not a queue .

thank you..

thank you for guiding

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.