• Model: Apple iPhone 4s
  • price: 49500
  • Camera: 8 megapixel (1080p)
  • Internet: 3G, GPRS, Wi-fi
  • Audio Player: AAC, HE-AAC, MP3, MP3 VBR, Apple Lossless, AIFF, WAV
  • Video Player: MPGE-4
  • Display: 3.5'' LCD
  • Memory: 16/32/64 GB(Internal), 512 Ram
  • Other Features: iOS 5( upgradable to iOS 6.1.3), Corning Gorilla Glass, oleophobic coating, Geo-tagging, touch focus, face detection, panorama, HDR, Accelerometer, gyro, proximity sensor, compass, Siri, iCloud cloud service

  • price:7500 Tk
  • camera: 3.15 Megapixel || Video: Yes, 30fps, Secondary No
  • Internet:  3G
  • Audio Player: WAV, MP4, AAC, AMR, MP3, M4A, WMA, 3GP
  • Video Player: MP4, ASF, AVI, 3GP
  • Memory: Up to 32 GB
  • Other Features: Dictionary, Recorder, Calculator, Clock, World clock, Calendar, Converter, Notes, Alarm clock, To-do list, Calendar, Contacts, Email, FM radio
The Nokia Lumia 520 is an Entry Level Smartphone with windows 8 is manufactured by Nokia.
  • price: 14950 Tk
  • camera:5 Megapixel || Video: Yes720p@30fps
  • Audio Player: ASF, MP4, AAC, AMR, MP3, M4A, WMA, 3GP, 3G2
  •  Video Player: MP4, ASF, WMV, AVI, 3GP, 3G2, M4V, MOV
  • First Arrival: April, 2013
  • Memory: 8GB Internal, 512 MB RAM
  • Memory Card SlotMicroSD card slot Expandable up to 64GB
  • Other Features: Microsoft Windows Phone 8, Dual-core 1 GHz Qualcomm Snapdragon™ S4 Processor, Scratch-resistant glass, 61 Hours music playback, 1430 mAh Battery, Ambient light sensor, Accelerometer, Proximity sensor, GPS, 3.5 mm audio connecto,Wi-fi
In comparison with the higher end Lumia models, the Nokia Lumia 520 misses the front facing camera, NFC, lower quality camera with no Carl Zeiss optics and no flash, minimal amount of RAM, and no support for inductive charging


Nokia Lumia 520 -Windows Phone at 1246Tk 
Nokia Lumia 520 is released here in Bangladesh on June '13. The 14950Tk price tag looks more attractive than it was supposed to be as you can pay the price in instalments. You can choose 3,6,9 or even 12 months instalment period while interest rate remains effectively at 0%. So, you have to pay only 1246Tk per month for 12 months to own a Nokia Lumia Windows phone!

You need a credit card from any of the following bank to avail this offer.

- Standard Chartered Bank
- Brac Bank
- Bank Asia
- City Bank
Ishkq in paris is a romantic hindi movie. Preity Zinta and Isabelle Adjani act in this movie and Director of this movie is Prem R Soni. Free download link of this movie mp3 songs:
ishkq_in_paris_2012_mp3_songs

Nokia Asha 306: Price in Bangladesh & Full Specification
Price8100 Tk
Camera2 Megapixel || Video: Yes, 10fps
InternetGPRS: Yes || EDGE: Yes, Wi-Fi 802.11 b/g
FM Radio Stereo FM radio with RDS
Audio Player MP3, WAV, WMA, AAC
Video Player MP4, H.264, H.263, WMV

First ArrivalJuly, 2012
Memory10 MB, 64 MB ROM, 32 MB RAM
Memory Card SlotMicroSD card slot Expandable up to 32GB, 2 GB included
BluetoothYes, v2.1 with EDR
USBYes, microUSB v2.0
InfraredNo
Weight96 gm
StatusAvailable
Display3" LCD resistive Full Touch (240px * 400px)
Talk Time14 Hours
Stand By600 Hours
BrowserHTML, XHTML, WAP 2.0, CSS 2.1, Javascript 1.8, XML
JavaYes
Other FeaturesCalendar, Alarm, To-Do, Calculator, Notes, SMS, MMS, Threaded view, Predictive text input, Haptic feedback, Music ringtones (MP3), Polyphonic ringtones, Vibration, Flight mode, Silent mode, Speakerphone

http://www.mobilemaya.com/mobile_price.php?id=153 
Nokia Asha 305: Price in Bangladesh & Full Specification
Price7800 Tk
Camera2 Megapixel || Video: Yes
InternetGPRS: Yes || EDGE: Yes
FM Radio Stereo FM radio with RDS
Audio Player MP3, WAV, WMA, AAC
Video Player MP4, H.264, H.263, WMV


First Arrivaljuly, 2012
Memory10 MB, 64 MB ROM, 32 MB RAM
Memory Card SlotMicroSD card slot Expandable up to 32GB, 2 GB included
BluetoothYes, v2.1 with EDR
USBYes, microUSB v2.0
InfraredNo
Weight98 gm
StatusAvailable
Display3.2" LCD resistive Full Touch (240px * 400px)
Talk Time14 Hours
Stand By528 Hours
BrowserHTML, XHTML, WAP 2.0, CSS
JavaYes
Other FeaturesDual SIM, Email, Facebook, Twitter, Calendar, Alarm, To-Do, Calculator, Notes, SMS, MMS, Threaded view, Predictive text input, Voice recordinghttp://www.mobilemaya.com/mobile_price.php?id=152 
This week Bollywood Highest earned movie is "Cocktail". This is this movie's first week and it earned about 52 cores rupees and become one of the super hit movies of this year. In the second position "Bol Bachchan". It is the second week of "Bol Bachchan" and it also become one of the hit movies of this year. The simple chart is here. For more details visit http://boxofficeindia.com/
Rank Film Week Weekly Nett Gross
1 Cocktail 1 51,96,00,000
2 Bol Bachchan 2 23,46,00,000
3 The Amazing Spiderman (Eng) 3 1,34,00,000
4 Gangs Of Wasseypur 4 62,00,000
5 The Amazing Spiderman (Hin) 3 41,00,000
Question:I have to write a program that takes one integer and follows these rules. First, print this number. When the number is even, change the number to itself divided by 2. Print the resulting number. When the number is odd, change the number to itself multiplied by 3. Then add 1 to the number. Print the result. Continue following these rules until the number you have left is 1 (which will be printed as well).
e.g. given 22 print:
22
11
34
17
52
26
13
40
20
10
5
16
8
4
2
1

ANSWER:
#include <stdio.h>
#include<conio.h>
int main() {
    int x;
    printf("Enter a number: ");
    scanf("%d", &x);
    printf("%d\n", x);
    do {
        if (x % 2 == 0)
            x /= 2;
        else {
            x *= 3;
            x++;
        }
        printf("%d\n", x);
    } while (x != 1);

    getchar ();
    return 0;
}
 


SOURCE:http://cboard.cprogramming.com/c-programming/134435-loop-problem.html