Thursday, August 27, 2015

WRITE A C PROGRAM TO INSERT THE ELEMENT INTO THE ARRAY

INSERT ELEMENT #include<stdio.h> void main() { int n,i,a[100],position,value; printf("Enter the array size\n"); scanf("%d",&n); ...
Read More

ADDITION OF MATRICES USING C LANGUAGE

ADDITION OF MATRICES #include<stdio.h> void main() { int m,n,c,d,first[10][10],second[10][10],sum[10][10]; printf("Enter the number...
Read More

DECIMAL TO BINARY CONVERSION IN C

DECIMAL TO BINARY #include<stdio.h> void main() { int n,c,k; printf("Enter the value to convert the decimal to binary"); scanf("%d",&n); ...
Read More

C PROGRAM TO IMPLEMENT THE MATRIX MULTIPLICATION

MATRIX MULTIPLICATION #include<stdio.h> void main() { int m,n,c,d,p,q,k,sum=0; int first[10][10],second[10][10],multiply[100][100]; ...
Read More

JAVA PROGRAM TO IMPLEMENT THE LINEAR SEARCH

LINEAR SEARCH import java.io.*; import java.util.*; class linear{ public static void main(String[] args) { Scanner s=new Scanner(System.in); ...
Read More

JAVA PROGRAM FOR IMPLEMENT THE BUBBLE SORT

BUBBLE SORT import java.io.*; import java.util.*; class bubble{ public static void main(String[] args) { Scanner s=new Scanner(System.in); ...
Read More

Live Traffic

Popular Posts

Designed By RAJESH GOWRABATHUNI