So, Finally students decide to complete theirs Maths home. Boys always do theirs tack around finale date of submitting that's fact. After getting phone calls on mobile everybody asking about Homework "Did you done?" same question. I also completed my homework in this last week.
Wednesday, November 21, 2012
Wednesday, November 7, 2012
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.
Labels:
BCA Semester-2,
C-Programs,
Info
WAP to Print Addition of Two Matrices(Matrix)
#include<stdio.h>
#include<conio.h>
void main()
{
#include<conio.h>
void main()
{
int a[3][3],b[3][3],c[3][3],i,j;
clrscr();
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]);
scanf("%d",&a[i][j]);
Labels:
BCA Semester-2,
C-Programs
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()
{
#include<conio.h>
void main()
{
int temp=0,i,n,a,b;
clrscr();
clrscr();
printf("\nEnter Number where you want to stop: ");
Labels:
BCA Semester-1
Tuesday, October 9, 2012
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();
}
Labels:
BCA Semester-1,
C-Programs
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
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
Labels:
BCA Semester-1,
Homework
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
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
Labels:
Accounts,
BCA Semester-1
Subscribe to:
Posts (Atom)