Skip to content

Commit

Permalink
Merge pull request julycoding#384 from IdleMind/patch-1
Browse files Browse the repository at this point in the history
Update 01.10.md
  • Loading branch information
julycoding committed Oct 29, 2014
2 parents ab6ed51 + a04fe55 commit d45e45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebook/zh/01.10.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ habbafgh

**28、实现memcpy函数**

已知memcpy的函数为: void* memcpy(void *dest , const void* src , size_t count)其中dest是目的指针,src是源指针。不调用c++/c的memcpy库函数,请编写memcpy。
已知memcpy的函数为: ```void* memcpy(void* dest , const void* src , size_t count)```其中dest是目的指针,src是源指针。不调用c++/c的memcpy库函数,请编写memcpy。

分析:参考代码如下:
```cpp
Expand Down

0 comments on commit d45e45d

Please sign in to comment.