Ad

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Thursday, March 21, 2013

Uva 11479 - Is this the easiest problem ?, programing from Uva

Problem ID - 11479, Problem Name - Is this the easiest problem ? Read the Problem Description #include <stdio.h>int main(){    signed long int a, b, c;    int test_case, i...

Uva 11936 - The Lazy Lumberjacks, programing problem from Uva

Problem ID - 11936, Problem Name - The Lazy Lumberjacks   Problem Description is Here     #include <stdio.h> int main() {     int a, b, c, i, k, j,...

Sunday, March 17, 2013

Uva 10370 - Above Average, easy programing problem from Uva

Problem ID - 10370, Problem Name - Above Average Problem Description is Here #include<stdio.h> main() {     int test, n, i, stud[1000];     float sum, ave, count, percent;     char ch='%'...

Saturday, March 16, 2013

Uva 10035 - Primary Arithmetic, so easy than other programing problem

Problem ID - 10035, Problem Name - Primary Arithmetic. Problem Description is Here #include<stdio.h> main() {     unsigned long int num1, num2, temp1, temp2;     int carry, r...

Friday, March 15, 2013

Fibonacci Sequence in C

Fibonacci Sequence in C The Fibonacci Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ............. The next number is found by adding up the two numbers before it. The 2 is found by adding the two numbers before it (1+1) Similarly, the 3 is found by adding the two numbers before it (1+2), And the 5 is (2+3), and so on! Example: the next number in the sequence above would be 21+34 = 5...

Uva 11172 - Relational Operators

This is a problem from UVa Online Judge. Problem ID - 11172, Problem Name - Relational Operators. http://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2113 #include <stdio.h> main()...

Binary Search

Searching is very important in data structure. Here is the code of Binary Search....... #include <stdio.h>  int main()  {      int ara[16] ={1, 4, 6, 8, 9, 11, 14, 15, 20, 25, 33, 83, 87, 97, 99, 100},      int low = 0,high = 15, mid, num = 1...

Wednesday, March 13, 2013

Make a pattern of Pyramid by using C programming...

We can make different pattern by using c programming. Here is a code of pyramid pattern............. #include <stdio.h> int main() {     int i,j,k,l,m;     scanf("%d",&i...