Question : Replace HDD Western Digital Scorpio in Fujitsu Amilo Pi 2550

I have a Fujitsu Amilo Pi 2550 Notebook with the following HDD :

Western Digital Scorpio
P/N WD3200BEVT-22ZCT0
S/N WXH108430381
SATA


The disk is damaged and i am looking for a new one.

I have found a disk which is SATA II with P/N WD3200BEVT.

Will i have a problem if i use SATA II in Amilo Pi 2550 ;

Do you have to suggest some trusted sites which may have this product number ;

Thanks

Answer : Replace HDD Western Digital Scorpio in Fujitsu Amilo Pi 2550

You may want to consider using strcspn.
 -- "Get span of character set in string"

 -- "Returns the length of the initial portion of str1 which consists only of characters that are part of str2."


For example:
   char sentence[] = "this is a string ";
   int pos = strcspn( sentence, " ");
In this case pos will be 4, so you know that sentence[0] through sentence[3] are not blanks. You can then use strncpy with a count of 4 to copy out the first 4 chars into your token buffer (and then add null byte).

     http://www.cplusplus.com/reference/clibrary/cstring/strspn/
Random Solutions  
 
programming4us programming4us