goofy
This commit is contained in:
parent
0ac77260b3
commit
3513468ecf
|
@ -0,0 +1,25 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
int main() {
|
||||
const char src[20] = "HA! poopoohead!";
|
||||
|
||||
char dest[100];
|
||||
|
||||
int eh = sprintf(dest, "%s", "goofy");
|
||||
printf("%d\n", eh);
|
||||
|
||||
memcpy(dest + eh, src, strlen(src) + 1);
|
||||
|
||||
printf("Output: %s\n", dest);
|
||||
|
||||
printf("src[0] %p\n", &src[0]);
|
||||
printf("src[0] %p\n\n", src);
|
||||
printf("src[1] %p\n", &src[1]);
|
||||
printf("src[1] %p\n", src + 1);
|
||||
printf("src[50] %p\n", src + 49);
|
||||
|
||||
printf("%ld", sizeof(dest));
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue