@QUANTUM HELPHELPHELPHLPEHLPEHLEPHLEPHLEP

This commit is contained in:
Nash Brooks 2022-01-23 09:20:10 -05:00
parent 58999a74e5
commit 70cee2d04b
2 changed files with 26 additions and 1 deletions

View file

@ -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
View 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;
}