Announcement:

This is just the beginning of this blog, please don't copy any of my posts.

Thursday, 24 October 2013

[C Program] To Implement Selection Sort

//Program for selection sort #include<stdio.h> #include<conio.h> //Main function void main() { int a[10],n,i,temp,j; clrscr(); printf("Enter size of array:"); scanf("%d",&n); printf("\nEnter the elements into array:"); i=0; while(i<n) { scanf("...

[C Program] To Implement and Perform Various Operations on Symmetric Matrix.

//Program for symmetric matrix. #include<stdio.h> #include<conio.h> void main() { int a[10][10],i,j,m,n,flag=0; clrscr(); printf("Enter the order for square matrix:"); scanf("%d %d",&m,&n); printf("\n\nEnter the elements into matrix:\n"); for(i=0;i<m;i++) { for(j=0;j<n;j++)...

[C Program] for Implementing and performing Various Operations on Stack.

//Program for implementing Stack. #include<stdio.h> #include<conio.h> #define MAX 3 //Defining structure struct stack { int a[MAX]; int top; }; struct stack s; //Initializing stack. void initialize() { s.top=-1;...

[C Program] To Perform Various Operations on Queue.

//Program for operations on queue. #include<stdio.h> #include<conio.h> //Defining the structure. struct queue { int data[3]; int front; int rear; }q; //Initializing the queue. void initialize() { q.rear=-1; q.front=-1;...

[C Program] to Implement Pointer to Function

//Program to implement pointer to function #include<stdio.h> #include<conio.h> void copy(int arr[],int b) { int i; for(i=0;i<b;i++) { if(i%2==0) arr[i]=0; } } void main() { int j,a[10],n; void(*ptr)(int[],int); clrscr();...

[C Program] to Pass Pointer to the Function

//Program to pass pointer to the function. #include<stdio.h> #include<conio.h> //Declaring the swap function. void swap(int *ptr,int *ptr1); //Main function. void main() { int a,b; clrscr(); printf("Enter value of...

[C Program] To Perform Insertion Sort

//Program for insertion sort #include<stdio.h> #include<conio.h> void insertion(int [], int size); int main() { int a[30],i,size; clrscr(); printf("Enter total no. of elements : "); scanf("%d",&size); printf("Enter elements:"); for(i=0;...

Copyright @ 2013 Pune University Bachelor of Engineering . Designed by Templateism | Love for The Tricks Machine