Category: Problem Solution

30
Dec
2015

Pattern Printing:Star and Half pyramid in C

#include<stdio.h> int main() { int i,j,rows; printf(“Enter the number of rows: “); scanf(“%d”,&rows); for(i=1; i<=rows; i++) {…

25
Dec
2015

php-gcm project for sending sms to any number through google cloud messaging

This is an opensource project by me and final release is version 1.0.1 till now. Description: First…

02
Dec
2015

HackerRank – A Very Big Sum

#include <map> #include <set> #include <list> #include <cmath> #include <ctime> #include <deque> #include <queue> #include <stack> #include…

02
Dec
2015

Computer Science Education Week 2015

http://cseweek.bdosn.org/posts/1/how-to-prepare-for-programming-contest

02
Dec
2015

What does it actually mean in an array limit 0≤A[i]≤10^10 ?

Its means that the value of A[i] must be remained between 0 to 10000000000

01
Dec
2015

HackerRank – Simple Array Sum

#include<stdio.h> int main() { int a[1000],n,i,sum=0; scanf(“%d”,&n); for(i=0;i<n;i++) { scanf(“%d”,&a[i]); sum=sum+a[i]; } printf(“%d”,sum); return 0; }