Drithi wrote a new post, C program to implement stack operations using array 11 months, 2 weeks ago
Below is the C program to implement stack operations using array
#include
#include
#include
#define size 100
int top=-1;
int flag=0;
int stack[size];
void push(int *,int);
int pop(int *);
void […]
Drithi wrote a new post, C program to implement queue operations 11 months, 2 weeks ago
Below is the C program to implement various queue operations,
#include
#include
#define max 5
int q[10],front=0,rear=-1;
void main()
{
int ch;
void insert();
void delet();
void […]
Drithi wrote a new post, C program to implement Circular Queue operations 11 months, 2 weeks ago
Below C program implements various Circular Queue operations
#include
#define max 3
int q[10],front=0,rear=-1;
void main()
{
int ch;
void insert();
void delet();
void display();
[…]
Drithi wrote a new post, C program to implement linked list 11 months, 2 weeks ago
Below given C program implements linked list
#include
#include
#include
struct list
{
int data;
struct list *next,*prev;
}*head=NULL;
void main()
{
void insert();
void del();
int […]
Drithi wrote a new post, C program which converts given expression into its post-fix format 11 months, 2 weeks ago
Below C program converts a given expression into its post-fix format
#include
#include
#include
char s[20];
int top=-1;
void main()
{
char str[20];
char ch;
int i;
char pop();
[…]
Drithi wrote a new post, C Program which performs stack operations 11 months, 3 weeks ago
Following program performs various stack operations,
#include
#include
#include
#include
#define max 20
int top=-1,s[max];
void push(int n)
{
if(top==max-1)
{
puts(“stack is over […]
Drithi changed their profile picture 11 months, 3 weeks ago
Drithi became a registered member 1 year ago
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Resources #Terms of Use
Copyright©2012 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com