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; }  

30
Nov
2015

TH spelling and pronounciation

 

14
Nov
2015

Programming Motivation!

https://www.youtube.com/watch?v=OWsyrnOBsJs     http://www.techtunes.com.bd/programming/tune-id/125550 https://progkriya.wordpress.com/page/2/http://ask.fm/shanto86 Programmer of the Month for April 2011: Md. Mahbubul Hasan  

13
Nov
2015

Length of a input string

#include<stdio.h> int main() { char country[200]; int length; while(1==scanf(“%s”,country)) { length=string_length(country); printf(“length:%d\n”,length); } return 0; } int…