C Program to Find String Permutations
This is the C Program to find string permutations there are n! permutations for a word of size n In mathematics, the notion of permutation relates to the act of rearranging, or permuting, all...
This is the C Program to find string permutations there are n! permutations for a word of size n In mathematics, the notion of permutation relates to the act of rearranging, or permuting, all...
QR [Quick Respone Code Based Services] is a project based on Data-mining,Image Processing for providing various services using QR Codes Data mining is the process of extracting knowledge from large amount of data. Image...
This is the java program to implement readers writers problem using threads and semaphores In computer science, the first and second readers-writers problems are examples of a common computing problem in concurrency. The two...
This is the C Program to implement queue using array and linked list in c A queue is an example of a linear data structure, or more abstractly a sequential collection. Queues provide services...
“Pythagorean triples” are integer solutions to the Pythagorean Theorem, a^2 + b^2 = c^2. #include #include main() { int s1,s2,hyp,ptriple=0; printf(” Side1 —- side2 —- hypotenusn”); for(s1=0;s1
This is the Java program to find the next prime NextPrime[n] gives the next prime above n import java.io.*; class nxtprm { public static void main(String[] args) { int n=0,j,flag=0,i=0; System.out.println(“Enter the Limit”); DataInputStream...
This is the C program to implement number system conversion,it converts 1.Decimal to Hexadecimal 2.Hexadecimal to Decimal #include #include #include main() { int ch; printf(“Choose any option 1.Decimal to Hexadecimal 2.Hexadecimal to Decimaln”); scanf(“%d”,&ch);...
This is the C Program which implements Stack using a linked list In computer science, a stack is a particular kind of abstract data type or collection in which the principal (or only) operations...
This is the C Program to find lcm of two numbers LCM=Product of two Numbers/GCD In arithmetic and number theory, the least common multiple (also called the lowest common multiple or smallest common multiple)...
This is the C Program to find nCr and nPr given n and r nPr(n, r) The number of possibilities for choosing an ordered set of r objects (a permutation) from a total of...
Recent Comments