Category: A ll Codes

11
May
2016

Problem 4 from 52 programming problems book

Solution: #include<iostream> #include<cstdio> using namespace std; int main() { int testcase,i,num_range,j; cin>>testcase; for(i=1; i<=testcase; i++) { cin>>num_range;…

11
May
2016

Problem 3 from 52 programming problems book

1st approach: #include<iostream> #include<cstdio> using namespace std; int main() { int counts=0; for(int i=1000; i>=1; i–) {…

08
May
2016

Problem 1 from 52 programming problems book

  http://ideone.com/ItvUGS

08
May
2016

Problem 2 from 52 programming problems book

I was using code blocks but it was giving me compiler error for c++11 was not on…

03
May
2016

Red Cross in Internet LAN icon on system tray

Today I faced this problem.I tried all method found on the net but didn’t worked anything.So I…

23
Apr
2016

PHP OOP Practice

Without Constructors: class_lib.php <?php class person{ var $name_tame; function set_name($new_name) { $this->$name_tame=$new_name; } function get_name() { return…