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.

Wednesday, August 7, 2013

C++ Programs List for Lab File

Here is my C++ Programs list. I can't say its 100% right. Yes but you can get idea about total number of programs have to be written in C++ Lab File. If you want to note down then you can Its just for inform you to these programs must be in your Lab File.

Given Programs in short name so try to understand definition.
Program List :

Download SQL Theory Assignment 2 with Answer

Here is one zip file download and extract it. You will get number of image which contain all questions' answers. Lets complete it.

Thursday, August 1, 2013

All Matrix's Definations for SY-BCA

1. Matrix: 
A matrix is an arrangement of numbers with M rows and N columns in a rectangular array.
Matrices are denoted by capital letter. like A,B,C

2. Raw Matrix:
A matrix in which there is only one rows and any number of columns this called a row matrix.