Recent user posts
Linked list Program
Linked list Program #include<stdio.h> void insert(int); void del(); struct node { int data; struct node *next; }*first=NULL; void main() { int x,a=1,p,k; clrscr(); do { printf("\n\n1.insert\n2.del\n3.search\n4.exit"); printf("\n Select one option\n"); scanf("%d",&… Read more
Client Server Computing
Client Server Computing Note:[Don't forget to add the diagrams given in the class.] Client/server is a computational architecture that involves client processes requesting service from server processes. Client/server computing is the logical extension of modular programming. Modular programming has… Read more
QUEUE using Linked List
QUEUE using Linked List #include<stdio.h> void insert(int); int del(); struct node { int data; struct node *next; }*first=NULL; void main() { int x,a=1,p,k; clrscr(); do { printf("\n\n Select One Queue Operation \n\n1.insert\n2.del\n3.search\n4.rear ele\n5.front ele\n6.empty\n7.size\n8.exit… Read more
stack using linked list
stack using linked list #include<stdio.h> void push(int); int pop(); struct node { int data; struct node *next; }*first=NULL; void main() { int x,a=1,p,k; clrscr(); do { printf("\n\n1.push\n2.pop\n3.search\n4.topele\n5.empty\n6.size\n7.exit"); printf("\n Select one option\n"… Read more
Contact Us
Contact For all the queries and sugessions Email: shyambabu545@yahoo.com… Read more
MWT NOTES
MWT NOTES Intro to C#.NET: http://www.csharp-station.com/Tutorials/Lesson01.aspx Operators, types: http://www.csharp-station.com/Tutorials/Lesson02.aspx Ctrl Statements: http://www.csharp-station.com/Tutorials/Lesson03.aspx http://www.csharp-station.com/Tutorials/Lesson04.aspx Methods : http://www… Read more
Hope nd courage r the two diamonds in the crone of success
No one can do miracles with out putting efforts and with out having commitments in any field. once listen and try when elders said some thing to u. no one born winner or looser, one nd only thing is how u grown ur knowledge along with u. " The common thing in winner and looser is 24 hr/day, and… Read more
Updated Programs List
1. Write a program that illustrates Sentinel controls 2. Write a program to check whether the given year is leap year or not 3. Write a program to convert decimal to binary format 4. Write a program to convert binary to decimal format 5. Write a program to convert decimal to octal format 6. Write… Read more
stack using linked list
stack using linked list #include<stdio.h> void push(int); int pop(); struct node { int data; struct node *next; }*first=NULL; void main() { int x,a=1,p,k; clrscr(); do { printf("\n\n1.push\n2.pop\n3.search\n4.topele\n5.empty\n6.size\n7.exit"); printf("\n Select one option\n"… Read more
Data Types
C has a concept of 'data types' which are used to define a variable before its use. The definition of a variable will assign storage for the variable and define the type of data that will be held in the location. The value of a variable can be changed any time. C has the following basic built-in datatypes… Read more
Prim's Algorithm
Prims Algorithm #define MAX 10 class prims { private : int cost[MAX][MAX], tree[MAX][MAX]; int n; public : void readmatrix(); int spanningtree(int); void display(int); }; void prims :: readmatrix() { int i, j; cout << "\nEnter the number of vertices in the Graph : "; cin >>… Read more
C - Built-in Library Functions
(It is good if you know the purpose of these functions) String Manipulation Functions char *strcpy (char *dest, char *src); Copy src string into dest string. char *strncpy(char *string1, char *string2, int n); Copy first n characters of string2 to stringl . int strcmp(char *string1, char *string2… Read more
New List of Programs
New List of Programs 1. Write a Program to find area and perimetre of a circle. 2. Write a Program to find area of square and rectangle. 3. Write a Program to find area of triangle and parabola. 4. Write a Program to find velocity and accelaration for a given displacement. 5. Write a Program to find… Read more
C - Basic Introduction
C is a general-purpose high level language that was originally developed by Dennis Ritchie for the Unix operating system. It was first implemented on the Digital Eqquipment Corporation PDP-11 computer in 1972. The Unix operating system and virtually all Unix applications are written in the C language… Read more
Middleware Technologies Notes
Centralized computing: Centralized computing is computing done at a central location, using terminals that are attached to a central computer. The computer itself may control all the peripherals directly (if they are physically connected to the central computer), or they may be attached via a terminal… Read more
Distributed Computing
Distributed Computing Distributed computing is a field of computer science that studies distributed systems. A distributed system consists of multiple autonomous computers that communicate through a computer network. The computers interact with each other in order to achieve a common goal. A computer… Read more
Arrays in C
Arrays in C The C language provides a capability that enables the user to define a set of ordered data items known as an array. Suppose we had a set of grades that we wished to read into the computer and suppose we wished to perform some operations on these grades, we will quickly realize that we… Read more
Strings in C
Strings in C C string is a character sequence stored as a one-dimensional character array and terminated with a null character ('\0', called NUL in ASCII). The C standard library named string.h is used to work with C strings. Declaration of strings in C char stringname[]; ex: char name[20]; Initialization… Read more
My College
When ever i go to a class, first thing i will try to find the standard and ability of the student, so that i wil come to know up to what extent i can go in depth of the subject. So far i didn't find any class or student in my experiance upto the mark. But st.peter's college 3rd year IT students are… Read more
Meet my view
Meeting has two different meanings one is to come into conjunction nd the second is to come together as opponents I don’t know which kind of meeting im attending now a days. Personally what I feel is, When ever we spoke about some thing in a meeting or seminar we must be in stage to answer the… Read more
Viva QP
Viva QP Who developed C? When C was developed? Why it is named as C What are the advantages of C? What are C TOKENS? What is identifier, keyword, data type, constant, and operator. Different Types of operators Data types and their size and ranges What is array? Types of arrays What is subscript? What… Read more
Build your Free Website!
- 100% free
- In only 5 min
- Your own domain
- No Ads
- No installation
- No technical skills





