Saturday, February 12, 2011

8 Super Valentine's Day Gift Ideas for Hubby

8 Super Valentine's Day Gift Ideas for Hubby

14th Feb is very special day for loving couples. Here is few super tips for valentines day gift ides.

  • iPod With Romantic Songs.
  • A Good Looking Watch
  • A New Wallet
  • Apple iTunes Gift Certificate
  • Min Laptops/Notebooks
  • Sexy Coupons and Vouchers
  • Tickets of Tour package
  • Nice shirt or Suit

Remember to give a beautiful red rose along with a gift.

Help me to Choose Valentine's Day Gift for my Girlfriend?

Help me to Choose Valentine's Day Gift for my Girlfriend?

Valentine's Day is very special for every one and its the day to show you love to your girlfriend. The gift should be chosen very carefully. These are few ideas to help you:

  • Delicious and Unique Chocolates
  • Comfy and Sexy Lingerie
  • beautiful Jewelry
  • Go on Long Drive
  • Good fragrant Flowers
  • Watches
  • Perfumes
  • A Night Out

String Copy Example in C : How to Use strcpy()

This is simple c program for beginners that how to use strcpy function in c to copy the one string into another string. This is simple inbuilt function and pass the target string as first parameter and source string as second parameter.

 

#include <stdio.h>
#include <string.h>
#include <conio.h>

int main ()
{
  char s1[]="India Watch: C Programming";
  char s2[100];
  strcpy (s2,s1);
  printf ("s1: %s\ns2: %s\n",s1,s2);
  getch();
  return 0;
}

//Copy string example
//output
//s1: India Watch: C Programming
//s2: India Watch: C Programming

Sponsored Ad

My Blog List