programming overflow
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',...
Insert into Multiple rows in single query: SQL
›
Method 1 - Traditional Insert INSERT INTO #SQLAuthority ( ID , Value ) VALUES ( 1 , 'First' ); INSERT INTO #SQLAuthority ( ...
Tuesday, July 29, 2014
Storage classes in c
›
Generally we don't specify storage classes while declaring variables in c, but compiler assume a storage class of a variable based on w...
‹
›
Home
View web version