Skip to main content

Posts

Showing posts from March 9, 2014

The Western Fashion Super Position in Bangladesh

Fashion does have a habit of drawing from the past. Distinctive decades and eventful eras seem to have th century French courts for shoe boots and 1930s’ men’s brogues which have recently been given a new lease of life. The latest decade to get an airing is the 1970s.And high street retailers like New Look offer a huge range of shoes and clothes that are on trend for this season’s most coveted trend. Designers everywhere have gone crazy for fringing, suede, flares, plat formed wedges and floral smocks. particularly strong influence over designers, from 16 It’s not hard to see why so many designers love the 70s. The era itself was about peace and love and respect for your fellow human being and the environment. Fashion was the greatest form of this expression. Women’s fashion was feminine. Denim was mixed with chiffon, hair was sassy and full of volume, yet simple and shoes were sky high but still managed to look casual and comfortable. The 1970s trend is going to be huge this s...

Write a c program to reverse a given number

#include <stdio.h> int main(){     int num,r,reverse=0;     printf( "Enter any number: " );     scanf( "%d" ,&num);     while (num){          r=num%10;          reverse=reverse*10+r;          num=num/10;     }     printf( "Reversed of number: %d" ,reverse);     return 0; } Sample output: Enter any number: 12 Reversed of number: 21 Code 2: Reverse very large or big numbers beyond the rang Logic is we accept the number as string #include <stdio.h> #define MAX 1000 int main(){     char num[MAX];     int i=0,j,flag=0;     printf( "Enter any positive integer: " );     scanf( "%s" ,num);     whil...