@QUANTUM HELPHELPHELPHLPEHLPEHLEPHLEPHLEP
This commit is contained in:
parent
58999a74e5
commit
70cee2d04b
2 changed files with 26 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
|||
# zombie-libc
|
||||
|
||||
zombie-libc is the spiritual successor to zombie-lib except this time written in C and C compliant instead of whatever i wanted to do.
|
||||
zombie-libc is the spiritual successor to zombie-lib except this time written in C and C compliant instead of whatever i wanted to do.
|
||||
|
||||
## Building
|
||||
gcc -Wall -Wextra -Werror -g -lm quadratic.c
|
||||
|
|
22
strlen.c
Normal file
22
strlen.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
#include <stdio.h> //printf and shit
|
||||
|
||||
int main() {
|
||||
|
||||
char benis[] = "cock";
|
||||
char *benispointer;
|
||||
char *secondbenispointer;
|
||||
|
||||
benispointer = &benis;
|
||||
secondbenispointer = &benis;
|
||||
|
||||
puts(benis);
|
||||
|
||||
|
||||
printf("benis is at: %x", &benis);
|
||||
|
||||
|
||||
puts(*benispointer);
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue