STACKS AND QUEUES NOTES Download Notes
Read More
Showing posts with label Stack. Show all posts
Showing posts with label Stack. Show all posts
Program for Prefix Evaluation in C
/* Prefix Evaluation */ #include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> #include...
Read More
Program for Postfix Evaluation in C
/* Postfix Evaluation */ #include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> #includ...
Read More
Program to convert Infix to Prefix Method 2
/* INfix to Prefix Method 2 left to right 1.reverse the string 2.do same as postfix and minor change ...
Read More
Program to convert Infix to Prefix Method 1
/* INfix to Prefix Method 1 left to right 1.do same as postfix 3 minor change: 1 Equal Priority ...
Read More
Program to convert Infix into Postfix
/* INfix to Postfix*/ #include<stdio.h> #include<conio.h> #include<ctype.h> #include<string.h> #define SIZE 10...
Read More
Write a Program to find Fibonacci Series using Recursion
/* Fibonacci Series using Recursion 0 1 1 2 3 5 8 13 21 */ #include<stdio.h> void fibo(int num); int main() { int num;...
Read More
Write a Program to find Factorial using Recursion
/* Factorial using Recursion */ #include<stdio.h> long int factorial(int num); int main() { int num; long int fact; ...
Read More
Subscribe to:
Posts (Atom)