Sunday, November 4, 2012

Download all C Lab Programs

Friends I have got all the our C lab programs and I'm uploaded here. Which we ware doing in C lab all the programs included in this file. Download that file now.


What to Do:
1. This File archived in .rar format.
2. Download it and store in your PC (Computer)
3. Right Click on file and select Extract File.
4. Total 95 programs are included. Have a fun.

WAP to Print Addition of Two Matrices(Matrix)



#include<stdio.h>
#include<conio.h>
void main()
{
int a[3][3],b[3][3],c[3][3],i,j;
clrscr();
printf("\nEnter value of matrix-1\n");
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
printf("A[%d][%d] is ..",i,j);
scanf("%d",&a[i][j]);

Download C Language Internal Test Paper

Wednesday, October 31, 2012

WAP to Print FIBONACCI SERIES 1,1,2,3,5,8,13,21....


/* Fibonacci Series,1,1,2,3,5,8,13,21........*/
#include<stdio.h>
#include<conio.h>
void main()
{
int temp=0,i,n,a,b;
clrscr();
printf("\nEnter Number where you want to stop: ");

Friday, September 28, 2012

How to use Array Statement simple trick


#include<stdio.h>
#include<conio.h>
void main()
{
int i,a [5];
clrscr();
printf("Enter Velue");

for(i=0; a<=5; i++)
{
scanf("%d",&a[i]);
}

printf("Elements of Array");

for(i=0; a<=5; i++)
{
printf("\nA[i], %d",i, a[i]);
}
gethc();
}

Homework Define: Array 5-Times

Array is fixed size sequenced collection of elements of same type.

Note:
-Array is use to handle large amount of data
-Is collection of elements of same data type.

Syntax: How to declared Array Variable
data_type variable_name [size];
int a [5];
- It can be used with all the data type.
* float a [5];
* char a [5];
* double a [5];

- Index of Array always start from 0

Wednesday, September 26, 2012

Accountancy Assignment

Submission Date: 06/10/2012

Questions:

1. What are Final Account? State the object of preparing Final Account.
2. Page Number 324
    Illustration Number : 11, 12, 13, 14, 15, 16

Sunday, September 23, 2012

All C-Programs are Available

Assignment Submission Date 24/09/2012
(Program 7 is not have been declared)


Program 7