programming overflow
Sunday, September 7, 2014
Implement a stack using one queue
›
Implement stack only using one queue. #include<stdio.h> #include<stdlib.h> typedef struct queue node; struct...
Saturday, September 6, 2014
›
Clone a Binary Tree with Random Pointers Given a Binary Tree where every node has following structure. struct node { int key; struct...
Wednesday, August 27, 2014
Linkage in c
›
T ranslation unit: A program in a single file - single translation unit. sharing functions and variable btw translation units : possi...
Saturday, August 2, 2014
Sorting: bubble, selection,insertion, quick, merge, counting sort programs in c
›
Bubble sort: #include<stdio.h> // compare adjacent elements and swap if needed until whole is not sorted int arr[]={3,8,6,1,9,6,...
Insert records from a table to other table
›
Note: While inserting records from a table to other table values clause must not be used Example: insert into high...
Friday, August 1, 2014
SQL JOINS
›
You have following tables Salesperson Customer ID Name Age Salary 1 Abe 61 140000 2 Bob 34 44000 5 Chris 34 40000...
Insert multiple rows in mysql
›
MySql :) insert into customer values(4,'Samsonic','pleasant','J'), (6,'Panasung','oaktown',...
‹
›
Home
View web version