mplementation of stack using any programing language
Answer / aravind
1. stack as an array or linked list (two ways)
2.define array.
3.perform push operation by taking one more array.
4.perform pop and store the popped items
5.display function to print the popped values
6.make sure you reach LIFO
Is This Answer Correct ? | 3 Yes | 3 No |
What is bss in c?
Which are low level languages?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Write any data structure program (stack implementation)
difference between ordinary variable and pointer in C?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
what is the coding of display the factorial of a number using array and function?
When should structures be passed by values or by references?
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
What are preprocessor directives in c?