Line Drawing is done by calculating Intermediate positions along the line path Between specified paths. DDA LINE Algorithm is a simplest algorithm of drawing a line . In DDA Algorithm line is simply Draws by adding the increment to initial pixel values with respect to x and y direction . After drawing initial pixel whose x and y direction are entered by user or...
Showing posts with label Cplusplus-Programs. Show all posts
Showing posts with label Cplusplus-Programs. Show all posts
Saturday, 22 February 2014
Friday, 21 February 2014
write Program To Print All Permutations of given string
Combination programs require good understanding of mathematics . In combination or permutation concepts some formulas are used to identify how this combination of letters will be formed and how many combinations will be made .
Formula for Permutation :-
...
Saturday, 15 February 2014
Algorithm and Implementation Program of Quick Sort

Quick Sort is a Sorting Algorithm based on Divide And Conquer Technique. In this at every step element is placed in its proper position.It performs very well on a longer list. It works recursively, by first selecting a random "Pivot value" from the list. Then it partitions the...
Sunday, 9 February 2014
C program to shutdown restart logoff hibernate computer in windowsxp windows7 and ubuntu
C program To Shutdown Computer in Windows xp
This is a program to Shutdown your computer by using C programming language code. This code will first ask you for the confirmation whether youwant to shutdown the computer or not. Depending on confirmation passed by user This program shutdown the computer or exit from executionif user don't want to shutdown computer. Firstly...
Sunday, 8 September 2013
print star triangle
Program 1
C++ LANGU...
Friday, 23 August 2013
Write A Program To Add Two Numbers Without Using Addition Operator
Case 1: For only Positive Numbers
# include < iostream.h >
# include < conio.h >...
Wednesday, 21 August 2013
Write A Program That Print its Own Code
#include<iostream.h>#include<conio.h&g...
Tuesday, 20 August 2013
Write A Program to Add Two Numbers Without Using Plus ( + ) Operator
# include < iostream.h >
# include < conio.h >...
Monday, 19 August 2013
C++ Tricky Program 1
What could be Output of Program given below :...
Sunday, 2 June 2013
Program to print pyramids on screen
PROGRAM TO PRINT PYRAMIDS IN C++
PROGRAM #...
Saturday, 1 June 2013
Write A Program To Print Star Right-Triangle
Program To Print star triangle in c++
1. * 2. *
** ...
Subscribe to:
Posts (Atom)
Followers
Popular Posts
-
Sqlite Database is the best way of providing portability...
-
Necessity is the advent of everything today while doing...
-
Quick Sort is a Sorting Algorithm based on Divide And...