Wednesday, October 9, 2013

Virtual Base Class ( Student, Marks, Behaviour, ECA & Result ) C++ Program

#include<conio.h>
#include<iostream.h>

class student
{
    public:
    int roll,id;
    char name[20],std[6];
    void getstudent()
    {
        cout<<"\n\tEnter Student Details \n";
        cout<<"\nEnter ID No :";cin>>id;
        cout<<"\nEnter STD : ";cin>>std;
        cout<<"\nEnter Name : ";cin>>name;
    }
};

Thursday, October 3, 2013

Multiple Hierarchical Inheritance C++ Program ( Gold, Cash, Properties )

#include<conio.h>
#include<iostream.h>

class MFMother
{
    double gold,properties;
    public:
    double togold,toopro;
    void mgetdata()
    {
        cout<<"\nEnter GMother's Details ";
        cout<<"\nEnter Gold in Kg :";cin>>gold;
        gold = gold*30200;

Sunday, September 15, 2013

Deque Algorithm for Curcular Queue using Array


If(Front == U)

      next = L

Else

      next = Front + 1

EndIf


Item = NULL

Enque Algorithm for Curcular Queue using Array

If(Rear == U)
      next = L
Else
      next = Rear + 1
EndIf

If(next == Front)
      print “Queue is Full.

Saturday, September 7, 2013

Maths Paper Style for Internal Exam

Q-1 SOLVE THE FOLLOWING (ANY 3 OUT OF 4) 15 M

2->NORMAL FORMS
2->MATRICES

Q-2(A) THEORY [CONNECTIVES] 4M 


(B) PROPERTIES [CONNECTIVES] 4M


(C)SOLVE THE FOLLOWING (ANY 3 OUT OF 4) 12M

Q-3(A)DEFINITION+EXAMPLE 5M


(B)SOLVE THE FOLLOWING(ANY 1 OUT OF 2) 4M
(C)DEFINITIONS (ANY 6 OUT OF 7) 6M

TOTAL: 50 MARKS

Friday, August 23, 2013

How to write Simple Stack Program using Linked List

#include<conio.h>
#include<stdio.h>

void PUSH();
void PEEP();
void POP();

struct node{
int data;
struct node *link;

}*head,*top=NULL,*newx,*item;

Wednesday, August 21, 2013

How to write Simple Stack Program in C

#include<conio.h>
#include<stdio.h>
 
void PUSH();
void PEEP();
int POP();
int top=-1,item,a[10];
void main()
{
int i;
clrscr();
for(i=0;i<12;i++)
{
printf("\nEnter No: ");
scanf("%d",&item);

Thursday, August 8, 2013

Download DFS all PPTs Files till Unit Test 1

Hello Friends I have uploaded all DFS Material including all the PPTs Files till we have learned so far. So Download this zip file and extract it you will get total 6 files.