



6























1
1
1







(edited)
1






(edited)























mind your business)







































true, false and wtf













telnet, soldier, that's all you need

telnet, soldier, that's all you need 











a tomato is considered a fruit because it develops from the ovary of a flower and contains seeds.






3
1




4
1









#include <stdint.h>
#include <stdio.h>
int main() {
char *foo;
char *bar;
char a = foo > bar;
printf("foo val: %d\n", *foo);
//printf("value: %d\n", bar);
printf("foo ptr: %p\n", foo);
printf("bar ptr: %p\n", bar);
printf("cmp res: %d", a);
}
value: 0
ptr: 0x7fd027a4bad0
ptr: (nil)
result: 1%


#include <stdint.h>
#include <stdio.h>
int main() {
char *foo;
char *bar;
char a = foo > bar;
printf("foo val: %d\n", *foo);
//printf("value: %d\n", bar);
printf("foo ptr: %p\n", foo);
printf("bar ptr: %p\n", bar);
printf("cmp res: %d", a);
}
value: 0
ptr: 0x7fd027a4bad0
ptr: (nil)
result: 1% 









































